Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Sep 5, 2024
1 parent 1eebd07 commit 73b7daa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/src/components/atoms/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const ButtonBox = React.forwardRef<
disabled: getValueForColourStyle('disabled', 'border'),
hover: getValueForColourStyle($colorStyle, 'hover'),
}}
borderRadius={['circle', 'rounded'].includes($shape) ? 'full' : '$large'}
borderRadius={['circle', 'rounded'].includes($shape) ? 'full' : 'large'}
borderStyle="solid"
borderWidth="1x"
boxShadow={$shadow ? '0.25 grey' : 'none'}
Expand Down
2 changes: 1 addition & 1 deletion components/src/components/molecules/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ const MenuButton = React.forwardRef<HTMLElement, BoxProps & MenuButtonProps>(
<Box
backgroundColor={
typeof $showIndicator === 'boolean'
? '$accent'
? 'accent'
: `$${$showIndicator}`
}
borderRadius="full"
Expand Down
2 changes: 1 addition & 1 deletion components/src/components/organisms/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const StyledCard = (props: BoxProps) => (
gap={{ xs: '4', sm: '6' }}
maxHeight={{ xs: '80vh', sm: 'min(90vh, 144)' }}
maxWidth={{ xs: 'unset', sm: '80vw' }}
minWidth={{ xs: 'unset', sm: '$64' }}
minWidth={{ xs: 'unset', sm: '64' }}
overflow="hidden"
padding={{ xs: '4', sm: '6' }}
position="relative"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/PaletteModal/PaletteModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const PaletteModal = ({
backgroundColor={
shadeRawColor
? rawColorToRGB(shadeRawColor)
: '$backgroundSecondary'
: 'backgroundSecondary'
}
>
<Box
Expand Down

0 comments on commit 73b7daa

Please sign in to comment.