source: src/theme/overrides/components/drawer.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: 1.1 KB
Line 
1import { alpha, Theme } from '@mui/material/styles';
2import { DrawerProps, drawerClasses } from '@mui/material/Drawer';
3//
4import { paper } from '../../css';
5
6// ----------------------------------------------------------------------
7
8export function drawer(theme: Theme) {
9 const lightMode = theme.palette.mode === 'light';
10
11 return {
12 MuiDrawer: {
13 styleOverrides: {
14 root: ({ ownerState }: { ownerState: DrawerProps }) => ({
15 ...(ownerState.variant === 'temporary' && {
16 [`& .${drawerClasses.paper}`]: {
17 ...paper({ theme }),
18 ...(ownerState.anchor === 'left' && {
19 boxShadow: `40px 40px 80px -8px ${alpha(
20 lightMode ? theme.palette.grey[500] : theme.palette.common.black,
21 0.24
22 )}`,
23 }),
24 ...(ownerState.anchor === 'right' && {
25 boxShadow: `-40px 40px 80px -8px ${alpha(
26 lightMode ? theme.palette.grey[500] : theme.palette.common.black,
27 0.24
28 )}`,
29 }),
30 },
31 }),
32 }),
33 },
34 },
35 };
36}
Note: See TracBrowser for help on using the repository browser.