codevdesign 0.0.31 → 0.0.33
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.
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<v-
|
|
3
|
-
flat
|
|
2
|
+
<v-app-bar
|
|
4
3
|
color="white"
|
|
4
|
+
class="px-0 mx-0"
|
|
5
|
+
:style="{ position: 'sticky' }"
|
|
5
6
|
height="82px"
|
|
6
7
|
>
|
|
7
8
|
<v-row
|
|
8
|
-
class="pt-
|
|
9
|
+
class="pt-2"
|
|
9
10
|
@resize="controlAffichage"
|
|
10
11
|
>
|
|
11
12
|
<v-col
|
|
@@ -49,7 +50,7 @@
|
|
|
49
50
|
</v-row>
|
|
50
51
|
<!-- Barre en bas -->
|
|
51
52
|
<div style="position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background-color: #808a9d" />
|
|
52
|
-
</v-
|
|
53
|
+
</v-app-bar>
|
|
53
54
|
</template>
|
|
54
55
|
|
|
55
56
|
<script setup lang="ts">
|
|
@@ -1,59 +1,70 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
footer
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<footer>
|
|
3
|
+
<div class="footer-content">
|
|
4
|
+
<a href="https://quebec.ca">
|
|
5
|
+
<img
|
|
6
|
+
id="logoFooter"
|
|
7
|
+
alt="Gouvernement du Québec."
|
|
8
|
+
src="/images/QUEBEC_couleur.svg"
|
|
9
|
+
width="117"
|
|
10
|
+
height="35"
|
|
11
|
+
/>
|
|
12
|
+
</a>
|
|
13
|
+
<div>
|
|
14
|
+
<small>
|
|
15
|
+
<a
|
|
16
|
+
href="http://www.droitauteur.gouv.qc.ca/copyright.php"
|
|
17
|
+
target="_blank"
|
|
18
|
+
>© Gouvernement du Québec {{ anneeEnCours }}
|
|
19
|
+
</a>
|
|
20
|
+
|
|
21
|
+
<a
|
|
22
|
+
v-if="props.version"
|
|
23
|
+
:href="props.lien"
|
|
24
|
+
target="_blank"
|
|
25
|
+
><br />
|
|
26
|
+
version <span v-html="props.version"
|
|
27
|
+
/></a>
|
|
28
|
+
</small>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
</footer>
|
|
32
|
+
</template>
|
|
33
|
+
|
|
34
|
+
<script setup lang="ts">
|
|
35
|
+
import { computed } from 'vue'
|
|
36
|
+
|
|
37
|
+
const props = defineProps<{
|
|
38
|
+
version?: string
|
|
39
|
+
lien?: string
|
|
40
|
+
}>()
|
|
41
|
+
|
|
42
|
+
const anneeEnCours = computed<number>(() => {
|
|
43
|
+
return new Date().getFullYear()
|
|
44
|
+
})
|
|
45
|
+
</script>
|
|
46
|
+
|
|
47
|
+
<style scoped>
|
|
48
|
+
footer {
|
|
49
|
+
display: flex;
|
|
50
|
+
justify-content: center; /* Centrer horizontalement */
|
|
51
|
+
align-items: center; /* Centrer verticalement */
|
|
52
|
+
text-align: center; /* Centrer le texte à l'intérieur des éléments */
|
|
53
|
+
height: 100px; /* Ajuster la hauteur du footer */
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.footer-content {
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: column; /* Disposer les éléments les uns sous les autres */
|
|
59
|
+
justify-content: center; /* Centrer verticalement à l'intérieur de .footer-content */
|
|
60
|
+
align-items: center; /* Centrer horizontalement à l'intérieur de .footer-content */
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
footer a {
|
|
64
|
+
text-decoration: none; /* Supprimer le soulignement des liens */
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
footer small {
|
|
68
|
+
margin-top: 10px; /* Ajouter de l'espace entre l'image et le texte */
|
|
69
|
+
}
|
|
70
|
+
</style>
|