File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 31
31
.nav-left {
32
32
flex : 1 ;
33
33
padding-left : 30px ;
34
+ z-index : 1000 ; /* Add this line to ensure the nav bar stays on top */
34
35
}
35
36
36
37
.nav-center {
37
38
flex : 0 1 0 ;
39
+ z-index : 1000 ; /* Add this line to ensure the nav bar stays on top */
38
40
}
39
41
40
42
.nav-right {
41
43
flex : 1 ;
42
44
padding-right : 30px ;
45
+ z-index : 1000 ; /* Add this line to ensure the nav bar stays on top */
43
46
}
44
47
45
48
section {
60
63
position : fixed;
61
64
width : 100vw ;
62
65
background-color : rgba (0 , 0 , 0 , 0.1 );
66
+ z-index : 999 ; /* Add this line to ensure the nav bar stays on top */
63
67
}
64
68
65
69
.nav-tab {
Original file line number Diff line number Diff line change @@ -646,15 +646,21 @@ p {
646
646
.nav-left {
647
647
flex : 1 ;
648
648
padding-left : 30px ;
649
+ z-index : 1000 ;
650
+ /* Add this line to ensure the nav bar stays on top */
649
651
}
650
652
651
653
.nav-center {
652
654
flex : 0 1 0 ;
655
+ z-index : 1000 ;
656
+ /* Add this line to ensure the nav bar stays on top */
653
657
}
654
658
655
659
.nav-right {
656
660
flex : 1 ;
657
661
padding-right : 30px ;
662
+ z-index : 1000 ;
663
+ /* Add this line to ensure the nav bar stays on top */
658
664
}
659
665
660
666
section {
@@ -675,6 +681,8 @@ nav {
675
681
position : fixed;
676
682
width : 100vw ;
677
683
background-color : rgba (0 , 0 , 0 , 0.1 );
684
+ z-index : 999 ;
685
+ /* Add this line to ensure the nav bar stays on top */
678
686
}
679
687
680
688
.nav-tab {
You can’t perform that action at this time.
0 commit comments