codevdesign 0.0.23 → 0.0.24
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.
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
:to="item.path"
|
|
18
18
|
:active="item.path === route"
|
|
19
19
|
:active-color="'white'"
|
|
20
|
+
:style="'min-width: 100px;'"
|
|
20
21
|
>{{ item.title }}</v-btn
|
|
21
22
|
>
|
|
22
23
|
</div>
|
|
@@ -76,7 +77,10 @@
|
|
|
76
77
|
</v-toolbar-title>
|
|
77
78
|
</v-toolbar>
|
|
78
79
|
|
|
79
|
-
<v-navigation-drawer
|
|
80
|
+
<v-navigation-drawer
|
|
81
|
+
v-model="menu"
|
|
82
|
+
nav
|
|
83
|
+
>
|
|
80
84
|
<v-list>
|
|
81
85
|
<div
|
|
82
86
|
v-for="item in filtrerMenuItems"
|
|
@@ -180,7 +184,7 @@
|
|
|
180
184
|
/* desktop background de la barre de menu et hauteur */
|
|
181
185
|
.v-toolbar {
|
|
182
186
|
background-color: #223654;
|
|
183
|
-
height:
|
|
187
|
+
height: 64px;
|
|
184
188
|
}
|
|
185
189
|
|
|
186
190
|
/* desktop couleur du texte de la barre, marge du haut, padding */
|
|
@@ -240,4 +244,8 @@
|
|
|
240
244
|
.v-navigation-drawer {
|
|
241
245
|
top: 132px !important;
|
|
242
246
|
}
|
|
247
|
+
/* mobile drawer, Calcule la hauteur comme étant 100% moins 132px pour afficher le scroll */
|
|
248
|
+
:deep(.v-navigation-drawer__content) {
|
|
249
|
+
height: calc(100% - 132px);
|
|
250
|
+
}
|
|
243
251
|
</style>
|