Files
aso/frontend/client-portal/src/theme/overrides/Backdrop.ts
2023-07-03 11:39:08 +07:00

22 lines
433 B
TypeScript

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