Skip to content

Commit 62b9bbb

Browse files
authored
fix: inherit bg in dark mode
1 parent d9518f9 commit 62b9bbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/dashboard/MainMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp
4040
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
4141
'&:hover': {
4242
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
43-
backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'rgba(255, 255, 255, 0.08)',
43+
backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'inherit',
4444
},
4545
};
4646

0 commit comments

Comments
 (0)