Skip to content

Commit 370e3d0

Browse files
authored
Merge pull request #755 from getmaxun/new-ui-fix
fix: match on hover menu tabs
2 parents 84ddce7 + 5874549 commit 370e3d0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/components/dashboard/MainMenu.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,21 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp
4444
justifyContent: 'flex-start',
4545
textAlign: 'left',
4646
fontSize: '17px',
47-
padding: '20px 16px 20px 22px',
47+
letterSpacing: '0.02857em',
48+
padding: '20px 20px 20px 22px',
4849
minHeight: '48px',
4950
minWidth: '100%',
5051
display: 'flex',
5152
alignItems: 'center',
5253
textTransform: 'none',
5354
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
54-
'&:hover': {
55+
'&:hover': {
56+
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
5557
backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'inherit',
5658
},
5759
};
5860

61+
5962
return (
6063
<>
6164
<Paper

0 commit comments

Comments
 (0)