Merge pull request #669 from getmaxun/dark-mode
fix: consistent dashboard style
This commit is contained in:
@@ -164,7 +164,7 @@ export const NavBar: React.FC<NavBarProps> = ({
|
|||||||
sx={{
|
sx={{
|
||||||
color: darkMode ? '#ffffff' : '#0000008A',
|
color: darkMode ? '#ffffff' : '#0000008A',
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
color: '#ff00c3'
|
background: 'inherit'
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -365,6 +365,9 @@ export const NavBar: React.FC<NavBarProps> = ({
|
|||||||
borderRadius: '5px',
|
borderRadius: '5px',
|
||||||
padding: '8px',
|
padding: '8px',
|
||||||
marginRight: '10px',
|
marginRight: '10px',
|
||||||
|
'&:hover': {
|
||||||
|
background: 'inherit'
|
||||||
|
}
|
||||||
}}>
|
}}>
|
||||||
<AccountCircle sx={{ marginRight: '5px' }} />
|
<AccountCircle sx={{ marginRight: '5px' }} />
|
||||||
<Typography variant="body1">{user.email}</Typography>
|
<Typography variant="body1">{user.email}</Typography>
|
||||||
@@ -595,4 +598,4 @@ const NavBarRight = styled.div`
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
`;
|
`;
|
||||||
|
|||||||
Reference in New Issue
Block a user