@campxdev/campx-web-utils 0.4.5 → 0.4.6
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.
- package/package.json +1 -1
- package/src/layout/AppLayout.tsx +9 -4
package/package.json
CHANGED
package/src/layout/AppLayout.tsx
CHANGED
|
@@ -105,10 +105,6 @@ const OuletContainer = styled(Box)(({ theme }: { theme?: any }) => ({
|
|
|
105
105
|
overflowY: 'scroll',
|
|
106
106
|
width: '100%',
|
|
107
107
|
|
|
108
|
-
[theme.breakpoints.down('md')]: {
|
|
109
|
-
margin: '0px 12px 12px 12px',
|
|
110
|
-
},
|
|
111
|
-
|
|
112
108
|
'&::-webkit-scrollbar': {
|
|
113
109
|
width: '0.5em',
|
|
114
110
|
height: '0.2em',
|
|
@@ -122,4 +118,13 @@ const OuletContainer = styled(Box)(({ theme }: { theme?: any }) => ({
|
|
|
122
118
|
backgroundColor: theme.palette.primary.main,
|
|
123
119
|
},
|
|
124
120
|
},
|
|
121
|
+
|
|
122
|
+
[theme.breakpoints.down('md')]: {
|
|
123
|
+
margin: '0px 12px 12px 12px',
|
|
124
|
+
height: 'calc(100vh - 118px)',
|
|
125
|
+
|
|
126
|
+
'&::-webkit-scrollbar': {
|
|
127
|
+
display: 'none',
|
|
128
|
+
},
|
|
129
|
+
},
|
|
125
130
|
}));
|