Files
aso/frontend/dashboard/src/theme/overrides/Popover.ts
2023-07-03 11:39:08 +07:00

17 lines
389 B
TypeScript

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Popover(theme: Theme) {
return {
MuiPopover: {
styleOverrides: {
paper: {
boxShadow: theme.customShadows.dropdown,
borderRadius: Number(theme.shape.borderRadius) * 1.5,
},
},
},
};
}