You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/styles/layout/_stateContainer.scss
+28-12Lines changed: 28 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -86,16 +86,27 @@
86
86
87
87
.router-link {
88
88
height: 100%;
89
-
width: 34%;
89
+
// width: 34%;
90
+
width: 8%;
90
91
display: flex;
91
92
justify-content: center;
92
93
align-items: center;
93
94
background-color: $navbar-unselected;
94
95
text-decoration: none;
95
96
color: $navbar-unselected-text;
96
97
97
-
border-top-right-radius: 10px;
98
-
border-top-left-radius: 10px;
98
+
// border-top-right-radius: 10px;
99
+
// border-top-left-radius: 10px;
100
+
}
101
+
102
+
.map-tab1 {
103
+
border-top-left-radius: 5px;
104
+
border-bottom-left-radius: 5px;
105
+
}
106
+
107
+
.accessibility-tab {
108
+
border-top-right-radius: 5px;
109
+
border-bottom-right-radius: 5px;
99
110
}
100
111
101
112
.router-link:hover {
@@ -108,16 +119,20 @@
108
119
}
109
120
110
121
.navbar {
111
-
background-color: $navbar-background;
122
+
//background-color: $navbar-background;
112
123
display: flex;
113
124
flex-direction: row;
114
-
justify-content: flex-start;
125
+
justify-content: center;
115
126
align-items: center;
116
127
height: 30px;
117
-
position: sticky;
118
-
top: 40px; //should revisit to figure out a more dynamic way of sticking the navbar to the bottom of the main-navbar
119
-
left: 0px;
120
-
z-index: 1;
128
+
position: fixed;
129
+
top: 4px; //should revisit to figure out a more dynamic way of sticking the navbar to the bottom of the main-navbar // <- tried placing the main nav on the same line to save space but ran into problems with the svg div of the tree + animation. Will need closer inspection
0 commit comments