Skip to content

Commit

Permalink
[@mantine/styles] Add missing right style prop (#2887)
Browse files Browse the repository at this point in the history
  • Loading branch information
adarshaacharya committed Nov 6, 2022
1 parent ec2b3a9 commit a90a96f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -53,5 +53,6 @@ export const SYSTEM_PROPS: Record<string, SystemPropData> = {
top: { type: 'default', property: 'top' },
left: { type: 'default', property: 'left' },
bottom: { type: 'default', property: 'bottom' },
right: { type: 'default', property: 'right' },
inset: { type: 'default', property: 'inset' },
};
1 change: 1 addition & 0 deletions src/mantine-styles/src/theme/types/MantineStyleSystem.ts
Expand Up @@ -53,6 +53,7 @@ export interface MantineStyleSystemProps {
top?: SystemProp<CSSProperties['top']>;
left?: SystemProp<CSSProperties['left']>;
bottom?: SystemProp<CSSProperties['bottom']>;
right?: SystemProp<CSSProperties['right']>;
inset?: SystemProp<CSSProperties['inset']>;
}

Expand Down

0 comments on commit a90a96f

Please sign in to comment.