source: src/theme/overrides/components/dialog.tsx@ 057453c

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

add customer

  • Property mode set to 100644
File size: 1.2 KB
Line 
1import { Theme } from '@mui/material/styles';
2import { DialogProps } from '@mui/material/Dialog';
3
4// ----------------------------------------------------------------------
5
6export function dialog(theme: Theme) {
7 return {
8 MuiDialog: {
9 styleOverrides: {
10 paper: ({ ownerState }: { ownerState: DialogProps }) => ({
11 boxShadow: theme.customShadows.dialog,
12 borderRadius: theme.shape.borderRadius * 2,
13 ...(!ownerState.fullScreen && {
14 margin: theme.spacing(2),
15 }),
16 }),
17 paperFullScreen: {
18 borderRadius: 0,
19 },
20 },
21 },
22 MuiDialogTitle: {
23 styleOverrides: {
24 root: {
25 padding: theme.spacing(3),
26 },
27 },
28 },
29 MuiDialogContent: {
30 styleOverrides: {
31 root: {
32 padding: theme.spacing(0, 3),
33 },
34 dividers: {
35 borderTop: 0,
36 borderBottomStyle: 'dashed',
37 paddingBottom: theme.spacing(3),
38 },
39 },
40 },
41 MuiDialogActions: {
42 styleOverrides: {
43 root: {
44 padding: theme.spacing(3),
45 '& > :not(:first-of-type)': {
46 marginLeft: theme.spacing(1.5),
47 },
48 },
49 },
50 },
51 };
52}
Note: See TracBrowser for help on using the repository browser.