Skip to content

Commit ef03f09

Browse files
committed
Put the linkitems in a box
1 parent bbd33c5 commit ef03f09

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

src/frontend/src/layouts/Sidebar/Sidebar.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,13 @@ const Sidebar: React.FC<SideBarProps> = ({ open, handleDrawerClose }) => {
7979
flex={1}
8080
justifyContent={'space-between'}
8181
>
82-
{linkItems.map((linkItem) => (
83-
<NavPageLink {...linkItem} open={open} />
84-
))}
82+
<Box>
83+
{linkItems.map((linkItem) => (
84+
<NavPageLink {...linkItem} open={open} />
85+
))}
86+
</Box>
87+
<Typography className={styles.versionNumber}>4.0.0</Typography>
8588
</Box>
86-
<Typography className={styles.versionNumber}>4.0.0</Typography>
8789
</NERDrawer>
8890
);
8991
};

src/frontend/src/stylesheets/layouts/sidebar/sidebar.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
text-align: center;
1919
color: #ffffff;
2020
width: 100%;
21-
padding-bottom: 3em;
21+
padding-bottom: 2em;
2222
}

0 commit comments

Comments
 (0)