We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd33c5 commit ef03f09Copy full SHA for ef03f09
2 files changed
src/frontend/src/layouts/Sidebar/Sidebar.tsx
@@ -79,11 +79,13 @@ const Sidebar: React.FC<SideBarProps> = ({ open, handleDrawerClose }) => {
79
flex={1}
80
justifyContent={'space-between'}
81
>
82
- {linkItems.map((linkItem) => (
83
- <NavPageLink {...linkItem} open={open} />
84
- ))}
+ <Box>
+ {linkItems.map((linkItem) => (
+ <NavPageLink {...linkItem} open={open} />
85
+ ))}
86
+ </Box>
87
+ <Typography className={styles.versionNumber}>4.0.0</Typography>
88
</Box>
- <Typography className={styles.versionNumber}>4.0.0</Typography>
89
</NERDrawer>
90
);
91
};
src/frontend/src/stylesheets/layouts/sidebar/sidebar.module.css
@@ -18,5 +18,5 @@
18
text-align: center;
19
color: #ffffff;
20
width: 100%;
21
- padding-bottom: 3em;
+ padding-bottom: 2em;
22
}
0 commit comments