Skip to content

Commit

Permalink
Merge pull request #1315 from RishistavRay/feat/aside-viewport-height
Browse files Browse the repository at this point in the history
Fix Sidebar height to occupy viewport height
ajhollid authored Dec 10, 2024
2 parents 49e57c5 + 1622e48 commit ad9bda4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Client/src/Components/Sidebar/index.jsx
Original file line number Diff line number Diff line change
@@ -262,7 +262,11 @@ function Sidebar() {
Menu
</ListSubheader>
}
sx={{ px: theme.spacing(6) }}
sx={{
px: theme.spacing(6),
height: "100%",
overflow: "hidden"
}}
>
{menu.map((item) =>
item.path ? (

0 comments on commit ad9bda4

Please sign in to comment.