fix: hover state style of ListItems which are clickable to be in line with other buttons (#223)

* fix: hover state style of ListItems which are clickable to be in line with other buttons

* fix: hover state of the SideBarStatus button
This commit is contained in:
Vojtech Simetka
2021-10-11 10:07:31 +02:00
committed by GitHub
parent 83c6d13417
commit 6c3f6c1019
2 changed files with 15 additions and 0 deletions
+2
View File
@@ -33,10 +33,12 @@ const useStyles = makeStyles((theme: Theme) =>
button: {
'&:hover': {
backgroundColor: '#2c2c2c',
color: 'white',
// https://github.com/mui-org/material-ui/issues/22543
'@media (hover: none)': {
backgroundColor: '#2c2c2c',
color: 'white',
},
},
},