File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,10 +71,19 @@ const Sidebar: React.FC<SideBarProps> = ({ open, handleDrawerClose }) => {
7171 < IconButton onClick = { handleDrawerClose } > { theme . direction === 'rtl' ? < ChevronRight /> : < ChevronLeft /> } </ IconButton >
7272 </ DrawerHeader >
7373 < Divider />
74- < Box overflow = { 'auto' } sx = { { overflowX : 'hidden' } } >
75- { linkItems . map ( ( linkItem ) => (
76- < NavPageLink { ...linkItem } open = { open } />
77- ) ) }
74+ < Box
75+ overflow = { 'auto' }
76+ sx = { { overflowX : 'hidden' } }
77+ display = "flex"
78+ flexDirection = { 'column' }
79+ flex = { 1 }
80+ justifyContent = { 'space-between' }
81+ >
82+ < Box >
83+ { linkItems . map ( ( linkItem ) => (
84+ < NavPageLink { ...linkItem } open = { open } />
85+ ) ) }
86+ </ Box >
7887 < Typography className = { styles . versionNumber } > 4.0.0</ Typography >
7988 </ Box >
8089 </ NERDrawer >
Original file line number Diff line number Diff line change 1414}
1515
1616.versionNumber {
17- position : absolute ;
17+ position : relative ;
1818 text-align : center;
1919 color : # ffffff ;
2020 width : 100% ;
21- bottom : 0 ;
22- height : 6em ;
21+ padding-bottom : 2em ;
2322}
You can’t perform that action at this time.
0 commit comments