Files
aso/frontend/client-portal/src/theme/overrides/Menu.ts
Linksehat Staging Server 70fc1579e7 update
2024-07-12 08:41:18 +07:00

21 lines
467 B
TypeScript
Executable File

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
}
}
}
}
}
};
}