glib-web 4.36.1 → 4.36.2
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/nav/drawer.vue +18 -19
- package/package.json +1 -1
package/nav/drawer.vue
CHANGED
|
@@ -162,12 +162,6 @@ export default {
|
|
|
162
162
|
background-color: white;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
.parent-item {
|
|
166
|
-
padding-left: 16px;
|
|
167
|
-
display: flex;
|
|
168
|
-
align-items: center;
|
|
169
|
-
gap: 8px;
|
|
170
|
-
}
|
|
171
165
|
</style>
|
|
172
166
|
|
|
173
167
|
<style lang="scss">
|
|
@@ -194,19 +188,24 @@ export default {
|
|
|
194
188
|
// }
|
|
195
189
|
}
|
|
196
190
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
191
|
+
.parent-item {
|
|
192
|
+
padding-left: 16px;
|
|
193
|
+
display: flex;
|
|
194
|
+
align-items: center;
|
|
195
|
+
gap: 8px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.child-item {
|
|
199
|
+
.v-list-item.drawer-button {
|
|
200
|
+
// padding-left: 0;
|
|
201
|
+
// padding-right: 0;
|
|
202
|
+
padding-inline-start: 0 !important;
|
|
203
|
+
padding-inline-end: 0;
|
|
204
|
+
|
|
205
|
+
.views-button {
|
|
206
|
+
padding-left: 32px;
|
|
207
|
+
padding-right: 32px;
|
|
209
208
|
}
|
|
210
209
|
}
|
|
211
|
-
|
|
210
|
+
}
|
|
212
211
|
</style>
|