@@ -5,28 +5,40 @@ import HomeSharpIcon from '@material-ui/icons/HomeSharp';
55import InfoIcon from '@material-ui/icons/Info' ;
66import ContactSupportIcon from '@material-ui/icons/ContactSupport' ;
77import SettingsIcon from '@material-ui/icons/Settings' ;
8- import '../stylesheets/SidebarContainer.css ' ;
8+ import '../stylesheets/SidebarContainer.scss ' ;
99
1010const SidebarContainer : React . FC = ( ) : JSX . Element => (
1111 < div className = "sidebar-container" id = "mySidebar" >
1212 < div className = "sidebar" >
13- < img alt = "Chronos Logo Mini" id = "miniLogo" src = { '../assets/C.svg' } />
14- < Link className = "sidebar-link" to = "/" id = "home" >
15- < HomeSharpIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
16-  Home
17- </ Link >
18- < Link className = "sidebar-link" to = "/about" id = "about" >
19- < InfoIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
20-  About
21- </ Link >
22- < Link className = "sidebar-link" to = "/contact" id = "contact" >
23- < ContactSupportIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
24-  Contact
25- </ Link >
26- < Link className = "sidebar-link" to = "/settings" id = "settings" >
27- < SettingsIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
28-  Settings
29- </ Link >
13+ < div className = "firstRow" >
14+ < span > < img alt = "C" id = "C" src = { '../assets/C.svg' } /> </ span >
15+ < img alt = "Chronos" id = "logo" src = { '../assets/logo.svg' } />
16+ </ div >
17+ < hr className = "line" id = "firstLine" > </ hr >
18+
19+ < div className = "secondRow" >
20+ </ div >
21+
22+ < hr className = "line" id = "secondLine" > </ hr >
23+
24+ < div className = "thirdRow" >
25+ < Link className = "sidebar-link" to = "/" id = "home" >
26+ < HomeSharpIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
27+  Home
28+ </ Link >
29+ < Link className = "sidebar-link" to = "/about" id = "about" >
30+ < InfoIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
31+  About
32+ </ Link >
33+ < Link className = "sidebar-link" to = "/contact" id = "contact" >
34+ < ContactSupportIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
35+  Contact
36+ </ Link >
37+ < Link className = "sidebar-link" to = "/settings" id = "settings" >
38+ < SettingsIcon style = { { boxShadow : 'none' , width : '40px' , height : '40px' } } />
39+  Settings
40+ </ Link >
41+ </ div >
3042 </ div >
3143 </ div >
3244) ;
0 commit comments