codevdesign 0.0.4 → 0.0.5
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.
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
|
|
62
62
|
<!-- mobile -->
|
|
63
63
|
<div v-else>
|
|
64
|
-
<v-toolbar class="pa-0 ajouterPointeur
|
|
64
|
+
<v-toolbar class="pa-0 ajouterPointeur barreMenuMobile">
|
|
65
65
|
<v-app-bar-nav-icon
|
|
66
66
|
variant="text"
|
|
67
67
|
@click.stop="menu = !menu"
|
|
@@ -185,7 +185,6 @@
|
|
|
185
185
|
.barreMenu {
|
|
186
186
|
color: white !important;
|
|
187
187
|
padding: 0 10px 0 10px !important;
|
|
188
|
-
margin-top: 77px !important;
|
|
189
188
|
}
|
|
190
189
|
/* desktop */
|
|
191
190
|
.v-btn {
|
|
@@ -230,16 +229,9 @@
|
|
|
230
229
|
}
|
|
231
230
|
|
|
232
231
|
/* mobile couleur du texte de la barre, marge du haut, padding */
|
|
233
|
-
.
|
|
232
|
+
.barreMenuMobile {
|
|
234
233
|
color: white !important;
|
|
235
234
|
padding: 0 10px 0 10px !important;
|
|
236
|
-
margin-top: 65px !important;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
/* mobile background de la barre de menu et hauteur */
|
|
240
|
-
.v-toolbar {
|
|
241
|
-
background-color: #223654;
|
|
242
|
-
height: 66px;
|
|
243
235
|
}
|
|
244
236
|
|
|
245
237
|
/* mobile drawer apparait sous les app bar */
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
<v-toolbar
|
|
3
3
|
color="primary"
|
|
4
4
|
height="72px"
|
|
5
|
-
elevation="
|
|
6
|
-
absolute
|
|
5
|
+
elevation="1"
|
|
7
6
|
>
|
|
8
7
|
<v-row
|
|
9
8
|
class="pl-6 pr-6"
|
|
@@ -35,7 +34,10 @@
|
|
|
35
34
|
v-if="!estMobile"
|
|
36
35
|
class="d-flex justify-center"
|
|
37
36
|
>
|
|
38
|
-
<v-app-bar-title
|
|
37
|
+
<v-app-bar-title
|
|
38
|
+
class="pl-12 ml-12"
|
|
39
|
+
style="font-size: 16px !important"
|
|
40
|
+
>
|
|
39
41
|
{{ $t('pivEntete.nom_application') }}
|
|
40
42
|
</v-app-bar-title>
|
|
41
43
|
</v-col>
|
|
@@ -54,7 +56,7 @@
|
|
|
54
56
|
v-if="estMobile"
|
|
55
57
|
cols="12"
|
|
56
58
|
>
|
|
57
|
-
<v-app-bar-title>
|
|
59
|
+
<v-app-bar-title style="font-size: 16px !important">
|
|
58
60
|
{{ $t('pivEntete.nom_application') }}
|
|
59
61
|
</v-app-bar-title>
|
|
60
62
|
</v-col>
|