Fix MenuButton size

This commit is contained in:
Michael Arestad 2022-08-04 13:54:58 -06:00
parent 4f2d6d4d68
commit c693d12e2d

View File

@ -44,7 +44,7 @@ export const MenuButton: FC<ComponentProps<typeof Button> & { highlighted: boole
>(({ highlighted, theme }) => ({
position: 'relative',
overflow: 'visible',
padding: 7,
padding: 8,
transition: 'none', // prevents button border from flashing when focused/blurred
'&:focus': {
background: theme.barBg,