Skip to content

Commit

Permalink
fix some more
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Sep 4, 2024
1 parent 03ffd3e commit ce46d8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/src/components/atoms/Banner/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const IconBox = ({
backgroundColor={getValueForAlert($alert, 'icon')}
borderRadius="full"
color={getValueForAlert($alert, 'svg')}
flex="0"
flex={0}
flexBasis={{ base: '8', sm: '10' }}
height={{ base: '8', sm: '10' }}
width={{ base: '8', sm: '10' }}
Expand Down
4 changes: 2 additions & 2 deletions components/src/components/atoms/Card/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export const CardDivider = (props: BoxProps) => (
<Box
backgroundColor="border"
height="px"
mx={{ xs: '$-4', sm: '$-6' }}
width={{ xs: '$dialogMobileWidth', sm: '$dialogDesktopWidth' }}
mx={{ xs: '-4', sm: '-6' }}
width={{ xs: 'dialogMobileWidth', sm: 'dialogDesktopWidth' }}
{...props}
/>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ const PopoverBox = React.forwardRef<HTMLElement, BoxProps & PopoverBoxProps>(
)}
visibility={getValueForTransitionState($state.status, 'visibility')}
width={{ xs: makeWidth($mobileWidth), sm: makeWidth($width) }}
zIndex="999999"
zIndex={999999}
/>
),
)
Expand Down

0 comments on commit ce46d8e

Please sign in to comment.