Fix dark mode styles

This commit is contained in:
Ken Hibino
2021-01-15 12:09:55 -08:00
parent 3e72e613be
commit 3778dacca7
4 changed files with 24 additions and 12 deletions

View File

@@ -63,7 +63,10 @@ const useStyles = (theme: Theme) =>
},
menuButton: {
marginRight: theme.spacing(2),
color: theme.palette.grey[700],
color:
theme.palette.type === "dark"
? theme.palette.grey[100]
: theme.palette.grey[700],
},
menuButtonHidden: {
display: "none",