Skip to content

Commit

Permalink
make hover bacbground color same as active
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrookes committed Nov 29, 2020
1 parent f6fe445 commit 626bbc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/modules/components/AppSettingsDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ const styles = (theme) => ({
color: theme.palette.text.secondary,
'&$toggleButtonSelected': {
color: `${theme.palette.primary.main}`,
backgroundColor: `${alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity)}`,
backgroundColor: alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity),
'&:hover': {
backgroundColor: `${alpha(theme.palette.primary.main, 0.12)}`,
backgroundColor: alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity),
},
},
},
Expand Down

0 comments on commit 626bbc7

Please sign in to comment.