Skip to content

Commit

Permalink
fix(time-slider): fix height of layer list #1494
Browse files Browse the repository at this point in the history
  • Loading branch information
kaminderpal committed Nov 15, 2023
1 parent 072ec05 commit a8805fe
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export const getSxClasses = (theme: Theme) => ({
color: 'text.primary',
width: '100%',
[theme.breakpoints.up('md')]: {
paddingRight: '1rem',
},
[theme.breakpoints.up('lg')]: {
paddingRight: '2rem',
},
'& .MuiListItemText-primary': {
Expand All @@ -18,7 +21,9 @@ export const getSxClasses = (theme: Theme) => ({
height: '100%',
},
},

'& .MuiListItemButton-root': {
minHeight: '73px',
},
'& .MuiListItemIcon-root': {
minWidth: '2rem',
},
Expand Down

0 comments on commit a8805fe

Please sign in to comment.