22 lines
433 B
TypeScript
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|