dlg-ui 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/addon/styles/addon.css
CHANGED
|
@@ -136,18 +136,23 @@
|
|
|
136
136
|
width: 100%;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
+
.navbar-body {
|
|
140
|
+
flex: 1 1 auto;
|
|
141
|
+
padding: 0 1em;
|
|
142
|
+
}
|
|
143
|
+
|
|
139
144
|
.navbar-container {
|
|
140
145
|
background-color: #eee;
|
|
141
146
|
position: sticky;
|
|
142
147
|
top: 0;
|
|
143
148
|
left: 0;
|
|
144
|
-
width: 100%;
|
|
145
149
|
min-height: 5vh;
|
|
146
150
|
height: fit-content;
|
|
147
151
|
display: flex;
|
|
148
152
|
justify-content: space-between;
|
|
149
153
|
align-items: center;
|
|
150
154
|
z-index: 10;
|
|
155
|
+
padding: 0 1em;
|
|
151
156
|
}
|
|
152
157
|
|
|
153
158
|
.navbar-dropdown .header-dropdown-options {
|
|
@@ -176,7 +181,6 @@
|
|
|
176
181
|
display: flex;
|
|
177
182
|
flex-wrap: wrap;
|
|
178
183
|
width: fit-content;
|
|
179
|
-
margin-right: 10px;
|
|
180
184
|
}
|
|
181
185
|
|
|
182
186
|
.navbar-selection {
|
|
@@ -185,9 +189,13 @@
|
|
|
185
189
|
align-items: center;
|
|
186
190
|
}
|
|
187
191
|
|
|
192
|
+
.navbar-selection:last-child {
|
|
193
|
+
margin-right: 0;
|
|
194
|
+
}
|
|
195
|
+
|
|
188
196
|
.navbar-title {
|
|
189
197
|
font-size: clamp(20px, 3vw, 30px);
|
|
190
|
-
margin:
|
|
198
|
+
margin-right: 1em;
|
|
191
199
|
width: fit-content;
|
|
192
200
|
white-space: nowrap;
|
|
193
201
|
font-weight: bold;
|
|
@@ -200,6 +208,8 @@
|
|
|
200
208
|
}
|
|
201
209
|
|
|
202
210
|
.navbar-yield {
|
|
211
|
+
display: flex;
|
|
212
|
+
justify-content: center;
|
|
203
213
|
flex: 1 1 auto;
|
|
204
214
|
padding-top: 8px;
|
|
205
215
|
}
|