Files
aso/frontend/client-portal/src/theme/overrides/Popover.ts
2026-02-04 14:39:20 +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,
},
},
},
};
}