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

22 lines
433 B
TypeScript
Executable File

import { Theme } from '@mui/material/styles';
// ----------------------------------------------------------------------
export default function Backdrop(theme: Theme) {
return {
MuiBackdrop: {
styleOverrides: {
root: {
background: [
`rgb(33,43,54, 0.7)`,
],
'&.MuiBackdrop-invisible': {
background: 'transparent'
}
}
}
}
};
}