Skip to content

Commit

Permalink
bug: wrong interaction style definition
Browse files Browse the repository at this point in the history
  • Loading branch information
ansmonjol committed Nov 29, 2024
1 parent 1b1f40d commit 7367fe9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/styles/muiTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,10 @@ export const theme = createTheme({
overflow: 'inherit',
minHeight: 'auto',
padding: '0',
'&::hover': {
'&:hover': {
backgroundColor: palette.grey[100],
},
'&::active': {
'&:active': {
backgroundColor: palette.grey[200],
},
'&.Mui-expanded': {
Expand All @@ -450,7 +450,7 @@ export const theme = createTheme({
'&.Mui-focusVisible': {
backgroundColor: 'inherit',
boxShadow: `0px 0px 0px 4px ${palette.primary[200]}`,
'&::hover': {
'&:hover': {
backgroundColor: palette.grey[100],
},
},
Expand Down

0 comments on commit 7367fe9

Please sign in to comment.