This commit is contained in:
krokodilka 2023-03-23 01:56:18 +03:00
parent e557baf938
commit daa25f9ebf
2 changed files with 2 additions and 2 deletions

@ -20,7 +20,7 @@ export default function Main () {
background: theme.palette.background.default, background: theme.palette.background.default,
width: '100%', width: '100%',
padding: '25px', padding: '25px',
height: '100vh', height: 'calc(100vh - 80px)',
overflow: 'auto' overflow: 'auto'
}} }}
> >

@ -44,7 +44,7 @@ export default function Sidebar() {
backgroundColor: theme.palette.lightPurple.main, backgroundColor: theme.palette.lightPurple.main,
minWidth: isMenuCollapsed ? "80px" : "230px", minWidth: isMenuCollapsed ? "80px" : "230px",
width: isMenuCollapsed ? "80px" : "230px", width: isMenuCollapsed ? "80px" : "230px",
height: '100vh', height: 'calc(100vh - 80px)',
display: "flex", display: "flex",
flexDirection: "column", flexDirection: "column",
py: "19px", py: "19px",