source: src/theme/overrides/components/backdrop.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 407 bytes
Line 
1import { alpha, Theme } from '@mui/material/styles';
2
3// ----------------------------------------------------------------------
4
5export function backdrop(theme: Theme) {
6 return {
7 MuiBackdrop: {
8 styleOverrides: {
9 root: {
10 backgroundColor: alpha(theme.palette.grey[900], 0.8),
11 },
12 invisible: {
13 background: 'transparent',
14 },
15 },
16 },
17 };
18}
Note: See TracBrowser for help on using the repository browser.