@selfcommunity/react-theme-default 0.2.0-live.96 → 0.2.0-live.98

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,9 @@ declare const Component: {
17
17
  };
18
18
  };
19
19
  '& .MuiDialog-paper': {
20
- height: string;
20
+ [x: number]: {
21
+ height: string;
22
+ };
21
23
  position: string;
22
24
  overflowX: string;
23
25
  '& > form': {
@@ -5,12 +5,14 @@ const Component = {
5
5
  styleOverrides: {
6
6
  root: ({ theme }) => ({
7
7
  '& .MuiDialog-paper': {
8
- height: '100%',
8
+ [theme.breakpoints.down('md')]: {
9
+ height: '100%'
10
+ },
9
11
  position: 'relative',
10
12
  overflowX: 'hidden',
11
13
  '& > form': {
12
14
  zIndex: 0,
13
- height: '100%',
15
+ height: '100%'
14
16
  },
15
17
  '& .MuiDialogTitle-root': {
16
18
  position: 'absolute',
@@ -1239,7 +1239,9 @@ declare const theme: {
1239
1239
  };
1240
1240
  };
1241
1241
  '& .MuiDialog-paper': {
1242
- height: string;
1242
+ [x: number]: {
1243
+ height: string;
1244
+ };
1243
1245
  position: string;
1244
1246
  overflowX: string;
1245
1247
  '& > form': {
@@ -17,7 +17,9 @@ declare const Component: {
17
17
  };
18
18
  };
19
19
  '& .MuiDialog-paper': {
20
- height: string;
20
+ [x: number]: {
21
+ height: string;
22
+ };
21
23
  position: string;
22
24
  overflowX: string;
23
25
  '& > form': {
@@ -3,12 +3,14 @@ const Component = {
3
3
  styleOverrides: {
4
4
  root: ({ theme }) => ({
5
5
  '& .MuiDialog-paper': {
6
- height: '100%',
6
+ [theme.breakpoints.down('md')]: {
7
+ height: '100%'
8
+ },
7
9
  position: 'relative',
8
10
  overflowX: 'hidden',
9
11
  '& > form': {
10
12
  zIndex: 0,
11
- height: '100%',
13
+ height: '100%'
12
14
  },
13
15
  '& .MuiDialogTitle-root': {
14
16
  position: 'absolute',
@@ -1239,7 +1239,9 @@ declare const theme: {
1239
1239
  };
1240
1240
  };
1241
1241
  '& .MuiDialog-paper': {
1242
- height: string;
1242
+ [x: number]: {
1243
+ height: string;
1244
+ };
1243
1245
  position: string;
1244
1246
  overflowX: string;
1245
1247
  '& > form': {