Separate Client Portal & Dashboard
This commit is contained in:
20
frontend/client-portal/src/theme/overrides/Menu.ts
Normal file
20
frontend/client-portal/src/theme/overrides/Menu.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Theme } from '@mui/material/styles';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Menu(theme: Theme) {
|
||||
return {
|
||||
MuiMenuItem: {
|
||||
styleOverrides: {
|
||||
root: {
|
||||
'&.Mui-selected': {
|
||||
backgroundColor: theme.palette.action.selected,
|
||||
'&:hover': {
|
||||
backgroundColor: theme.palette.action.hover
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user