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
cleaned up styling on navbar again; there were mult overlapping style settings. Is now nested inside of state-container as it should be. Also added a console.log to background script import action to try to see what tabsObj looks like.
Copy file name to clipboardExpand all lines: src/app/styles/layout/_stateContainer.scss
+7-21Lines changed: 7 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -19,16 +19,6 @@
19
19
box-shadow: none;
20
20
}
21
21
22
-
.state-container.navbar {
23
-
background-color: $background-color;
24
-
display: flex;
25
-
flex-direction: row;
26
-
justify-content: flex-start;
27
-
align-items: center;
28
-
height: 30px;
29
-
position: static;
30
-
}
31
-
32
22
.state-container.main-navbar {
33
23
background-color: $background-color;
34
24
display: flex;
@@ -58,15 +48,6 @@
58
48
height: 35px;
59
49
}
60
50
61
-
.navbar {
62
-
// prevent navbar from scrolling with state/tree display
63
-
position: sticky;
64
-
top: 40px; //JR 12.16.23 @12:15pm: this hardcoding is not best practice, should revisit to figure out a more dynamic way of sticking the navbar to the bottom of the main-navbar
65
-
left: 0px;
66
-
z-index: 1;
67
-
@extend%disable-highlight;
68
-
}
69
-
70
51
.no-data-message {
71
52
color: $text-color;
72
53
font: normal13px$text-font-stack;
@@ -125,12 +106,17 @@
125
106
}
126
107
127
108
.navbar {
128
-
background-color: $navbar-color;
109
+
background-color: $background-color;
129
110
display: flex;
130
111
flex-direction: row;
131
-
justify-content: start;
112
+
justify-content: flex-start;
132
113
align-items: center;
133
114
height: 30px;
115
+
position: sticky;
116
+
top: 40px; //JR 12.16.23 @12:15pm: this hardcoding is not best practice, should revisit to figure out a more dynamic way of sticking the navbar to the bottom of the main-navbar
0 commit comments