File tree Expand file tree Collapse file tree 2 files changed +48
-4
lines changed
Expand file tree Collapse file tree 2 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 11const NavBar = ( ) => {
22 return (
3- < div className = 'navBar' > NavBar</ div >
4- )
5- }
3+ < div className = 'navBar' >
4+ < div > MLflow.js</ div >
5+ < div className = 'navBarLinks' >
6+ < div > Home</ div >
7+ < div className = 'navBarLinksFeatures' > Features</ div >
8+ < div className = 'navBarLinksDemo' > Demo</ div >
9+ < div className = 'navBarLinksTeam' > Team</ div >
10+ < div className = 'navBarLinksGithub' > G</ div >
11+ < div className = 'navBarLinksLinkedIn' > L</ div >
12+ </ div >
13+ </ div >
14+ ) ;
15+ } ;
616
7- export default NavBar
17+ export default NavBar ;
Original file line number Diff line number Diff line change 1818 color : var (--foreground );
1919 background : var (--background );
2020 font-family : Arial, Helvetica, sans-serif;
21+ font-size : 14px ;
2122}
2223
2324@layer utilities {
@@ -61,6 +62,39 @@ body {
6162 width : 100% ;
6263 height : 100% ;
6364 background-color : # 0a0a0a ;
65+ display : grid;
66+ grid-template-columns : auto auto;
67+ grid-template-rows : 100% ;
68+ }
69+
70+ .navBarLinks {
71+ grid-column : 2 ;
72+ grid-row : 1 ;
73+ width : 100% ;
74+ height : 100% ;
75+ display : grid;
76+ grid-template-columns : repeat (calc (100% / 6 ), 6 );
77+ grid-template-rows : 100% ;
78+ }
79+
80+ .navBarLinksFeatures {
81+ grid-column : 2 ;
82+ }
83+
84+ .navBarLinksDemo {
85+ grid-column : 3 ;
86+ }
87+
88+ .navBarLinksTeam {
89+ grid-column : 4 ;
90+ }
91+
92+ .navBarLinksGithub {
93+ grid-column : 5 ;
94+ }
95+
96+ .navBarLinksLinkedIn {
97+ grid-column : 6 ;
6498}
6599
66100.mobileInnerWrapper {
You can’t perform that action at this time.
0 commit comments