|
|
@@ -10,7 +10,7 @@ Carrousel de la page d'accueil
|
|
|
:show-delimiters="false"
|
|
|
:touch="true"
|
|
|
:height="lgAndUp ? 500 : 800"
|
|
|
- :interval="5000"
|
|
|
+ :interval="10000"
|
|
|
:cycle="true"
|
|
|
>
|
|
|
<v-carousel-item
|
|
|
@@ -30,15 +30,13 @@ Carrousel de la page d'accueil
|
|
|
|
|
|
<p class="description" v-html="mdAndUp ? item.description : item.descriptionSm" />
|
|
|
|
|
|
- <v-row class="align-start pl-4">
|
|
|
- <v-btn
|
|
|
- :to="item.link"
|
|
|
- append-icon="fas fa-arrow-right"
|
|
|
- :class="['learn-more-btn', item.buttonClass]"
|
|
|
- >
|
|
|
- En savoir plus
|
|
|
- </v-btn>
|
|
|
- </v-row>
|
|
|
+ <v-btn
|
|
|
+ :to="item.link"
|
|
|
+ append-icon="fas fa-arrow-right"
|
|
|
+ :class="['mt-3 learn-more-btn', item.buttonClass]"
|
|
|
+ >
|
|
|
+ En savoir plus
|
|
|
+ </v-btn>
|
|
|
</v-col>
|
|
|
|
|
|
<!-- Partie Illustration -->
|
|
|
@@ -201,10 +199,11 @@ const carouselItems: Ref<Array<CarouselItem>> = ref([
|
|
|
|
|
|
/* ============= Colonne gauche - Description =============== */
|
|
|
.col.presentation {
|
|
|
+ padding-left: 7rem;
|
|
|
+
|
|
|
.logo {
|
|
|
width: 20rem;
|
|
|
margin-top: 10px;
|
|
|
- margin-left: 6rem;
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
width: 15rem;
|
|
|
@@ -214,7 +213,6 @@ const carouselItems: Ref<Array<CarouselItem>> = ref([
|
|
|
|
|
|
.description {
|
|
|
margin-top: 8px;
|
|
|
- margin-left: 7rem;
|
|
|
width: 25vw;
|
|
|
margin-bottom: 1rem;
|
|
|
}
|
|
|
@@ -231,7 +229,6 @@ const carouselItems: Ref<Array<CarouselItem>> = ref([
|
|
|
line-height: 15px;
|
|
|
width: 10rem;
|
|
|
height: 2.5rem;
|
|
|
- margin-left: 7rem;
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
width: 80%;
|