Procházet zdrojové kódy

[test] drawer padding and scroll view

amenpunk před 3 roky
rodič
revize
86dd1de410

+ 2 - 2
psicoadmin/src/Components/Dashboard.js

@@ -257,13 +257,13 @@ function DashboardContent() {
257 257
                         {secondaryListItems}
258 258
                     </List>
259 259
                 </Drawer>
260
-                <Box component="main" sx={{ backgroundColor: (theme) => theme.palette.mode === 'light' ? theme.palette.grey[100] : theme.palette.grey[900], flexGrow: 1, height: '100vh', overflow: 'auto', }} >
260
+                {/* <Box component="main" sx={{ backgroundColor: (theme) => theme.palette.mode === 'light' ? theme.palette.grey[100] : theme.palette.grey[900], flexGrow: 1, height: '100vh', overflow: 'auto', }} > */}
261 261
                     <Toolbar />
262 262
                     <Container maxWidth="lg" sx={{ mt: 2 , mb: 2 }}>
263 263
                         <Outlet/>
264 264
                         <Footer/>
265 265
                     </Container>
266
-                </Box>
266
+                {/* </Box> */}
267 267
             </Box>
268 268
         </ThemeProvider>
269 269
     );

+ 7 - 2
psicoadmin/src/Css/all.css

@@ -17,7 +17,7 @@ body {
17 17
     position: relative;
18 18
     margin: 0 auto;
19 19
     font-family: 'gudea' !important;
20
-    background: #f1f1f1;
20
+    background: #f1f1f1 !important;
21 21
 }
22 22
 .container-in {
23 23
     max-width: 1100px;
@@ -214,7 +214,8 @@ a.article:hover {
214 214
     transition: all 0.3s;
215 215
 }
216 216
 .content-section {
217
-    padding: 0 30px;
217
+    background-color : #f1f1f1;
218
+    padding: 70px 30px;
218 219
 }
219 220
 .nav-item a i{
220 221
     color: #212529;
@@ -3962,5 +3963,9 @@ All this is done for any sub-level being entered.
3962 3963
     padding : 0px;
3963 3964
 }
3964 3965
 
3966
+.container-fluid{
3967
+    padding-left : 0px !important;
3968
+}
3969
+
3965 3970
 
3966 3971