Skip to content

Commit

Permalink
[ActionMenu] button should not shrink on narrow screen
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOrz committed Jan 23, 2022
1 parent 8ada7da commit 4755649
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/ActionMenu/ActionMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import cx from 'clsx';

const useStyles = makeStyles(theme => ({
button: {
minWidth: 0,
minWidth: 0, // Override material-ui style
flexShrink: 0,
padding: '3px',
color: ({ open }) =>
open ? theme.palette.primary[500] : theme.palette.secondary[500],
Expand Down

0 comments on commit 4755649

Please sign in to comment.