Skip to content

Commit

Permalink
fix: Remove flex width from chip delete button
Browse files Browse the repository at this point in the history
  • Loading branch information
dexterca committed Jan 15, 2025
1 parent ac2a86f commit c311139
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Chip/Chip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ export const useStyles = makeStyles(
justifyContent: 'center',
color: 'currentcolor',
cursor: 'pointer',
height: theme.pxToRem(18),
minHeight: theme.pxToRem(13),
minWidth: theme.pxToRem(13),
maxHeight: theme.pxToRem(18),
maxWidth: theme.pxToRem(18),
minHeight: theme.pxToRem(18),
minWidth: theme.pxToRem(18),
padding: 0,
width: theme.pxToRem(18),
transition: 'background 0.25s ease-out',
'&:hover': {
color: theme.palette.black[50],
Expand Down

0 comments on commit c311139

Please sign in to comment.