Parcourir la source

artist page responsive for md devices

Olivier Massot il y a 1 an
Parent
commit
5d62be3d78

+ 4 - 0
components/Common/Card/Stat.vue

@@ -40,6 +40,10 @@ const props = defineProps({
     text-align: center;
     text-align: center;
     margin-bottom: 0.5rem;
     margin-bottom: 0.5rem;
   }
   }
+
+  @media (max-width: 1240px) {
+    height: 12rem;
+  }
 }
 }
 
 
 
 

+ 4 - 0
components/Common/Carousel/Clients.vue

@@ -99,6 +99,10 @@ h3 {
   line-height: 42px;
   line-height: 42px;
   color: var(--on-primary-color);
   color: var(--on-primary-color);
   width: 50%;
   width: 50%;
+
+  @media (max-width: 1240px) {
+    width: 70%;
+  }
 }
 }
 
 
 .alt-color {
 .alt-color {

+ 15 - 1
components/Common/ContainerVideo.vue

@@ -8,7 +8,7 @@
               {{ title }}
               {{ title }}
             </LayoutUISubTitle>
             </LayoutUISubTitle>
 
 
-            <p class="quote">
+            <p v-if="lgAndUp" class="quote">
               {{ quote }}
               {{ quote }}
             </p>
             </p>
           </v-col>
           </v-col>
@@ -27,6 +27,11 @@
 </template>
 </template>
 
 
 <script setup lang="ts">
 <script setup lang="ts">
+
+import { useDisplay } from "vuetify";
+
+const { lgAndUp } = useDisplay()
+
 const props = defineProps({
 const props = defineProps({
   title: {
   title: {
     type: String,
     type: String,
@@ -66,6 +71,11 @@ const props = defineProps({
   background-position: center;
   background-position: center;
   width: 650px;
   width: 650px;
   height: 650px;
   height: 650px;
+
+  @media (max-width: 1240px) {
+    width: 400px;
+    height: 400px;
+  }
 }
 }
 
 
 .quote {
 .quote {
@@ -87,5 +97,9 @@ const props = defineProps({
   background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%),
   background: linear-gradient(180deg, rgba(14, 45, 50, 0) 26.84%, #0e2d32 100%),
     rgba(7, 27, 31, 0.3);
     rgba(7, 27, 31, 0.3);
   height: 40rem;
   height: 40rem;
+
+  @media (max-width: 1240px) {
+    height: 400px;
+  }
 }
 }
 </style>
 </style>

+ 2 - 2
components/Common/Presentation.vue

@@ -7,7 +7,7 @@ Section "Présentation" d'une page Logiciel
       <v-row class="center-90">
       <v-row class="center-90">
 
 
         <!-- Colonne 1 (sous-titre, illustration logiciels, prix) -->
         <!-- Colonne 1 (sous-titre, illustration logiciels, prix) -->
-        <v-col cols="5">
+        <v-col cols="12" lg="5">
           <LayoutUISubTitle class="ml-8" >
           <LayoutUISubTitle class="ml-8" >
             {{ title }}
             {{ title }}
           </LayoutUISubTitle>
           </LayoutUISubTitle>
@@ -48,7 +48,7 @@ Section "Présentation" d'une page Logiciel
         </v-col>
         </v-col>
 
 
         <!-- Colonne 2 (présentation, pictogrammes des fonctionnalités) -->
         <!-- Colonne 2 (présentation, pictogrammes des fonctionnalités) -->
-        <v-col cols="6">
+        <v-col cols="12" lg="6">
           <h3>
           <h3>
             {{ section1title }}
             {{ section1title }}
           </h3>
           </h3>

+ 29 - 10
components/Common/ReviewSection.vue

@@ -1,13 +1,13 @@
 <template>
 <template>
     <LayoutContainer>
     <LayoutContainer>
       <v-row class="center-90">
       <v-row class="center-90">
-        <v-col cols="3">
+        <v-col cols="12" lg="3">
           <div class="controls-section">
           <div class="controls-section">
             <h3>
             <h3>
               Ce sont eux qui en parlent le mieux
               Ce sont eux qui en parlent le mieux
             </h3>
             </h3>
 
 
-            <div class="carousel-controls">
+            <div v-if="lgAndUp" class="carousel-controls">
               <v-btn
               <v-btn
                 icon="fas fa-chevron-left"
                 icon="fas fa-chevron-left"
                 @click="goPrevious"
                 @click="goPrevious"
@@ -20,14 +20,16 @@
           </div>
           </div>
         </v-col>
         </v-col>
 
 
-        <v-col cols="9">
-          <Carousel
+        <v-col cols="12" lg="9">
+          <v-carousel
             ref="carousel"
             ref="carousel"
-            :items-to-show="3"
-            :items-to-scroll="1"
-            :wrap-around="true"
+            :items-to-show="lgAndUp ? 3 : 1"
+            :wrapAround="true"
+            :show-arrows="false"
+            height="350"
+            class="carousel"
           >
           >
-            <Slide
+            <v-carousel-item
               v-for="(card, index) in cards"
               v-for="(card, index) in cards"
               :key="index"
               :key="index"
               class="card"
               class="card"
@@ -54,8 +56,8 @@
                   </v-card-actions>
                   </v-card-actions>
                 </v-card>
                 </v-card>
               </v-container>
               </v-container>
-            </Slide>
-          </Carousel>
+            </v-carousel-item>
+          </v-carousel>
         </v-col>
         </v-col>
       </v-row>
       </v-row>
   </LayoutContainer>
   </LayoutContainer>
@@ -66,6 +68,7 @@ import { Carousel, Slide } from "vue3-carousel";
 import "vue3-carousel/dist/carousel.css";
 import "vue3-carousel/dist/carousel.css";
 import type { PropType } from "@vue/runtime-core";
 import type { PropType } from "@vue/runtime-core";
 import type { Review } from "~/types/interface";
 import type { Review } from "~/types/interface";
+import { useDisplay } from "vuetify";
 
 
 const props = defineProps({
 const props = defineProps({
   cards: {
   cards: {
@@ -74,6 +77,8 @@ const props = defineProps({
   },
   },
 });
 });
 
 
+const { lgAndUp } = useDisplay()
+
 const carousel: Ref<typeof Carousel | null> = ref(null);
 const carousel: Ref<typeof Carousel | null> = ref(null);
 
 
 const goPrevious = () => {
 const goPrevious = () => {
@@ -138,6 +143,12 @@ const goNext = () => {
     max-height: 300px;
     max-height: 300px;
     margin-top: 2rem;
     margin-top: 2rem;
     margin-bottom: 0.6rem;
     margin-bottom: 0.6rem;
+
+    @media (max-width: 1240px) {
+      min-height: 120px;
+      max-width: 70%;
+      margin: 0 auto;
+    }
   }
   }
 
 
   .v-card-item {
   .v-card-item {
@@ -193,11 +204,19 @@ const goNext = () => {
       max-height: 150px !important;
       max-height: 150px !important;
     }
     }
   }
   }
+
+  @media (max-width: 1240px) {
+  }
 }
 }
 
 
 .card {
 .card {
   margin-left: 0.5rem;
   margin-left: 0.5rem;
   border-radius: 1rem;
   border-radius: 1rem;
+
+  @media (max-width:1240px) {
+    margin-left: 15%;
+    max-width: 70%;
+  }
 }
 }
 
 
 @media (min-width:2100px) {
 @media (min-width:2100px) {

+ 4 - 0
components/Common/Table/Comparatif.vue

@@ -114,6 +114,10 @@ table {
   margin-left: auto;
   margin-left: auto;
   border: none;
   border: none;
   border-collapse: collapse;
   border-collapse: collapse;
+
+  @media (max-width: 940px) {
+    width: 100%;
+  }
 }
 }
 
 
 th {
 th {

+ 42 - 9
components/Layout/FAQ.vue

@@ -1,7 +1,7 @@
 <template>
 <template>
   <div class="alt-theme main my-2">
   <div class="alt-theme main my-2">
-    <div class="d-flex flex-row">
-      <div class="d-flex flex-column">
+    <v-row>
+      <v-col cols="12" lg="6">
         <LayoutUISubTitle class="mt-12 ml-3">
         <LayoutUISubTitle class="mt-12 ml-3">
           Vous voulez tirer le meilleur de notre logiciel ?
           Vous voulez tirer le meilleur de notre logiciel ?
         </LayoutUISubTitle>
         </LayoutUISubTitle>
@@ -18,9 +18,9 @@
         >
         >
           Consulter notre FAQ
           Consulter notre FAQ
         </v-btn>
         </v-btn>
-      </div>
+      </v-col>
 
 
-      <div class="d-flex flex-column justify-center links">
+      <v-col cols="12" lg="6" class="links">
         <v-btn
         <v-btn
           href="https://ressources.opentalent.fr/pages/viewpage.action?pageId=75170564"
           href="https://ressources.opentalent.fr/pages/viewpage.action?pageId=75170564"
           target="_blank"
           target="_blank"
@@ -51,13 +51,13 @@
             </p>
             </p>
           </div>
           </div>
         </v-btn>
         </v-btn>
-      </div>
-    </div>
+      </v-col>
+    </v-row>
   </div>
   </div>
 </template>
 </template>
 
 
 <style scoped lang="scss">
 <style scoped lang="scss">
-.flex-row {
+.v-row {
   position: relative;
   position: relative;
   z-index: 2;
   z-index: 2;
 }
 }
@@ -103,14 +103,22 @@ h3 {
   border-radius: 6px;
   border-radius: 6px;
   font-weight: 500;
   font-weight: 500;
   font-size: 0.8rem;
   font-size: 0.8rem;
-  z-index: 1;
+  z-index: 2;
   text-transform: none !important;
   text-transform: none !important;
   line-height: 1rem;
   line-height: 1rem;
 }
 }
 
 
 .links {
 .links {
+  justify-content: center;
+  display: flex;
+  flex-direction: column;
+
+  @media (max-width: 1240px) {
+    flex-direction: row;
+  }
+
   .v-btn {
   .v-btn {
-    z-index: 1;
+    z-index: 2;
     width: 23rem;
     width: 23rem;
     height: 5.5rem;
     height: 5.5rem;
     margin-left: 3rem;
     margin-left: 3rem;
@@ -145,6 +153,31 @@ h3 {
       white-space: normal !important;
       white-space: normal !important;
       text-align: left;
       text-align: left;
     }
     }
+
+    @media (max-width: 1240px) {
+      max-width: 40%;
+      margin: 12px 5%;
+      height: 8rem;
+
+      .v-btn__content>div {
+        display: flex;
+        flex-direction: column;
+        align-items: center;
+      }
+
+      .v-img {
+        margin-bottom: 6px;
+      }
+
+      p {
+        text-align: center;
+      }
+
+    }
   }
   }
+
+
 }
 }
 </style>
 </style>
+<script setup lang="ts">
+</script>

+ 47 - 98
components/Logiciels/Artist/Abonnement.vue

@@ -1,57 +1,16 @@
 <template>
 <template>
   <AnchoredSection id="subscription">
   <AnchoredSection id="subscription">
     <LayoutContainer>
     <LayoutContainer>
-      <v-row class="mt-12 center-90">
-        <v-col cols="4">
-          <LayoutUISubTitle>
-            S'abonner dès maintenant
-          </LayoutUISubTitle>
-
-          <div class="profile-circle">
-            <v-img src="/images/logo/logiciels/OT_Artist-BLANC.png" />
-          </div>
-
-          <div class="subscription-info">
-            <p class="mt-3 mb-6">
-              Pour vous abonner au logiciel, téléchargez et remplissez le
-              formulaire avant de nous le transmettre
-            </p>
-            <a
-              href="https://www.opentalent.fr/fileadmin/stockage/commercial/contrats/BDC_Artist_Public-23.pdf"
-              target="_blank"
-              class="download-button"
-              >
-              Télécharger le formulaire d'abonnement
-            </a>
-          </div>
+      <LayoutUISubTitle>
+        S'abonner dès maintenant
+      </LayoutUISubTitle>
 
 
-          <div class="subscription-steps">
-            <ol>
-              <li class="mt-6">
-                Téléchargez le formulaire
-              </li>
-              <li>
-                Complétez le formulaire
-              </li>
-              <li>
-                Joignez le règlement par chèque avec le formulaire à <br />
-                <p class="pa-3">
-                  2iOPENService <br />
-                  217 rue Raoul Follereau <br />
-                  74300 CLUSES
-                </p>
-              </li>
-              <li>
-                Après réception de votre formulaire d'adhésion et de votre
-                règlement, nous vous ouvrons le service choisi. Vous recevrez
-                alors un mail avec votre identifiant de connexion, votre mot de
-                passe, ainsi que l'URL de votre site internet.
-              </li>
-            </ol>
-          </div>
+      <v-row class="mt-12 center-90">
+        <v-col v-if="lgAndUp" cols="4" class="col-1">
+          <LogicielsArtistAbonnementToSubscribe />
         </v-col>
         </v-col>
 
 
-        <v-col cols="8">
+        <v-col cols="12" lg="8" class="col-2">
           <h3>
           <h3>
             Opentalent Artist, <br> la solution que vous attendiez...
             Opentalent Artist, <br> la solution que vous attendiez...
           </h3>
           </h3>
@@ -64,6 +23,8 @@
             vos besoins d'évolution !
             vos besoins d'évolution !
           </p>
           </p>
 
 
+          <LogicielsArtistAbonnementToSubscribe v-if="mdAndDown" />
+
           <p class="cmf">
           <p class="cmf">
             Adhérents CMF ? <br> Et si on vous disait que vous l’aviez déjà ...
             Adhérents CMF ? <br> Et si on vous disait que vous l’aviez déjà ...
           </p>
           </p>
@@ -71,9 +32,17 @@
           <div class="border-row">
           <div class="border-row">
             <nuxt-link href="https://www.cmf-musique.org/" target="_blank">
             <nuxt-link href="https://www.cmf-musique.org/" target="_blank">
               <v-img
               <v-img
-                src="/images/logiciels/school/cmf_logo_orange.png"
+                v-if="lgAndUp"
+                src="/images/logo/logo-cmf-petit.png"
                 class="logo-cmf"
                 class="logo-cmf"
               />
               />
+              <v-img
+                v-else
+                src="/images/logo/logo-cmf.png"
+                class="logo-cmf"
+              />
+
+
             </nuxt-link>
             </nuxt-link>
 
 
             <div class="cmf-container">
             <div class="cmf-container">
@@ -95,56 +64,20 @@
 
 
 <script setup>
 <script setup>
 import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
 import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
+import { useDisplay } from "vuetify";
+
+const { mdAndDown, lgAndUp } = useDisplay()
 </script>
 </script>
 
 
 <style scoped lang="scss">
 <style scoped lang="scss">
-.subscription-steps ol {
-  list-style-type: decimal;
-  padding-left: 2rem;
-  color: var(--on-neutral-color);
-  font-size: 16px;
-  font-weight: 300;
-  line-height: 20px;
-  margin-left: 3rem;
-  width: 20rem;
-}
-
-.profile-circle {
-  top: 0.5rem;
-  width: 100px;
-  height: 100px;
-  position: relative;
-  background-color: var(--on-neutral-color);
-  border-radius: 50%;
-  margin-left: 11rem;
-}
 
 
-.subscription-info {
-  margin-left: 4rem;
-  background: var(--secondary-color);
-  border-radius: 10px;
-  height: 15rem;
-  width: 20rem;
-  padding: 1rem;
-  margin-top: 1rem;
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
-  color: var(--on-secondary-color);
-  text-align: center;
-  font-size: 1rem;
-  font-weight: 300;
-  line-height: 18px;
-}
-
-.download-button {
-  font-weight: 700;
-  background-color: var(--on-neutral-color);
-  color: var(--neutral-color);
-  padding: 10px 20px;
-  border-radius: 5px;
-  text-decoration: none;
-  display: inline-block;
+@media (max-width: 1240px) {
+  .col-1 {
+    order: 2
+  }
+  .col-2 {
+    order: 1
+  }
 }
 }
 
 
 .solution {
 .solution {
@@ -153,7 +86,7 @@ import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
 }
 }
 
 
 h3 {
 h3 {
-  color: var(--primary-color);
+  color: var(--on-neutral-color);
   margin-bottom: 4rem;
   margin-bottom: 4rem;
   font-size: 42px;
   font-size: 42px;
   font-weight: 600;
   font-weight: 600;
@@ -165,12 +98,22 @@ h3 {
   margin-bottom: 4rem;
   margin-bottom: 4rem;
 
 
   p {
   p {
-    color: var(--on-primary-color);
+    color: var(--on-neutral-color);
     width: 25rem;
     width: 25rem;
     font-weight: 300;
     font-weight: 300;
     font-size: 16px;
     font-size: 16px;
     line-height: 20px;
     line-height: 20px;
     margin-left: 2rem;
     margin-left: 2rem;
+
+    @media (max-width: 1240px) {
+      margin-left: auto;
+      margin-right: auto;
+      width: 90%;
+    }
+  }
+
+  @media (max-width: 1240px) {
+    margin-top: 1rem;
   }
   }
 }
 }
 
 
@@ -181,12 +124,18 @@ h3 {
   background-size: contain;
   background-size: contain;
   width: 15rem;
   width: 15rem;
   height: 10rem;
   height: 10rem;
+
+  @media (max-width: 1240px) {
+    margin-left: auto;
+    margin-right: auto;
+    width: 90%;
+  }
 }
 }
 
 
 .cmf {
 .cmf {
   margin-top: 3rem;
   margin-top: 3rem;
   margin-bottom: 2rem;
   margin-bottom: 2rem;
-  color: var(--primary-color);
+  color: var(--on-neutral-color);
   width: 40rem;
   width: 40rem;
   font-size: 34px;
   font-size: 34px;
   font-weight: 400;
   font-weight: 400;

+ 113 - 0
components/Logiciels/Artist/Abonnement/ToSubscribe.vue

@@ -0,0 +1,113 @@
+<template>
+  <div class="profile-circle">
+    <v-img src="/images/logo/logiciels/OT_Artist-BLANC.png" />
+  </div>
+
+  <div class="subscription-info">
+    <p class="mt-3 mb-6">
+      Pour vous abonner au logiciel, téléchargez et remplissez le
+      formulaire avant de nous le transmettre
+    </p>
+    <a
+      href="https://www.opentalent.fr/fileadmin/stockage/commercial/contrats/BDC_Artist_Public-23.pdf"
+      target="_blank"
+      class="download-button"
+    >
+      Télécharger le formulaire d'abonnement
+    </a>
+  </div>
+
+  <div class="subscription-steps">
+    <ol>
+      <li class="mt-6">
+        Téléchargez le formulaire
+      </li>
+      <li>
+        Complétez le formulaire
+      </li>
+      <li>
+        Joignez le règlement par chèque avec le formulaire à <br />
+        <p class="pa-3">
+          2iOPENService <br />
+          217 rue Raoul Follereau <br />
+          74300 CLUSES
+        </p>
+      </li>
+      <li>
+        Après réception de votre formulaire d'adhésion et de votre
+        règlement, nous vous ouvrons le service choisi. Vous recevrez
+        alors un mail avec votre identifiant de connexion, votre mot de
+        passe, ainsi que l'URL de votre site internet.
+      </li>
+    </ol>
+  </div>
+</template>
+
+<script setup lang="ts">
+
+</script>
+
+<style scoped lang="scss">
+
+.profile-circle {
+  top: 3rem;
+  width: 100px;
+  height: 100px;
+  position: relative;
+  background-color: var(--on-neutral-color);
+  border-radius: 50%;
+  margin-left: 11rem;
+
+  @media (max-width: 1240px) {
+    margin-left: auto;
+    margin-right: auto;
+  }
+}
+
+.subscription-info {
+  margin-left: 4rem;
+  background: var(--secondary-color);
+  border-radius: 10px;
+  height: 15rem;
+  width: 20rem;
+  padding: 1rem;
+  margin-top: 1rem;
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  color: var(--on-secondary-color);
+  text-align: center;
+  font-size: 1rem;
+  font-weight: 300;
+  line-height: 18px;
+
+  @media (max-width: 1240px) {
+    width: 80%;
+  }
+}
+
+.download-button {
+  font-weight: 700;
+  background-color: var(--on-neutral-color);
+  color: var(--neutral-color);
+  padding: 10px 20px;
+  border-radius: 5px;
+  text-decoration: none;
+  display: inline-block;
+}
+
+.subscription-steps ol {
+  list-style-type: decimal;
+  padding-left: 2rem;
+  color: var(--on-neutral-color);
+  font-size: 16px;
+  font-weight: 300;
+  line-height: 20px;
+  margin-left: 3rem;
+  width: 20rem;
+
+  @media (max-width: 1240px) {
+    width: 80%;
+  }
+}
+</style>

+ 3 - 2
components/Logiciels/Artist/Comparatif.vue

@@ -93,8 +93,9 @@ const comparisonItems: Array<ComparisonItem> = [
 
 
 <style scoped>
 <style scoped>
 
 
-.v-container{
+.v-container {
   width: 95%;
   width: 95%;
   margin-right: auto;
   margin-right: auto;
   margin-left: auto;
   margin-left: auto;
-}</style>
+}
+</style>

+ 31 - 6
components/Logiciels/Artist/Formations.vue

@@ -10,16 +10,16 @@
           </v-row>
           </v-row>
 
 
           <v-row class="formation py-12 align-center mb-12" no-gutters>
           <v-row class="formation py-12 align-center mb-12" no-gutters>
-            <v-col cols="12" lg="6">
+            <v-col cols="12" lg="4">
               <v-img src="/images/logiciels/artist/webinaire.jpg" class="meeting-img" />
               <v-img src="/images/logiciels/artist/webinaire.jpg" class="meeting-img" />
             </v-col>
             </v-col>
 
 
-            <v-col cols="12" lg="6" md="6" sm="6">
-              <h3 class="ml-6 mr-12">
+            <v-col cols="12" lg="6">
+              <h3>
                 Webinaire - Partez à la découverte du logiciel Opentalent Artist
                 Webinaire - Partez à la découverte du logiciel Opentalent Artist
               </h3>
               </h3>
 
 
-              <p class="details ml-6 mr-12" >
+              <p class="details" >
                 Rejoignez notre webinaire, spécialement conçu pour les
                 Rejoignez notre webinaire, spécialement conçu pour les
                 professionnels du secteur culturel, orchestres, chorales,
                 professionnels du secteur culturel, orchestres, chorales,
                 compagnies de danse, ainsi que les troupes de théâtre et de
                 compagnies de danse, ainsi que les troupes de théâtre et de
@@ -32,7 +32,7 @@
               </p>
               </p>
 
 
               <nuxt-link to="/webinaires">
               <nuxt-link to="/webinaires">
-                <v-btn class="mt-12 ml-6">
+                <v-btn>
                   S'inscrire à nos webinaires
                   S'inscrire à nos webinaires
                 </v-btn>
                 </v-btn>
               </nuxt-link>
               </nuxt-link>
@@ -64,6 +64,10 @@ import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
     background-position: center;
     background-position: center;
     background-size: cover;
     background-size: cover;
     border-radius: 10%;
     border-radius: 10%;
+
+    @media (max-width: 1240px) {
+      margin: 0 auto;
+    }
   }
   }
 
 
   :deep(.v-img img) {
   :deep(.v-img img) {
@@ -83,7 +87,11 @@ import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
     font-size: 1rem;
     font-size: 1rem;
     line-height: 1.5rem;
     line-height: 1.5rem;
     color: var(--on-primary-color);
     color: var(--on-primary-color);
-    text-align: justify
+    text-align: justify;
+
+    @media (max-width: 1240px) {
+      margin-right: 24px !important;
+    }
   }
   }
 
 
   .v-btn {
   .v-btn {
@@ -96,6 +104,23 @@ import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
     border-color: var(--on-primary-color);
     border-color: var(--on-primary-color);
     border-radius: 0.5rem;
     border-radius: 0.5rem;
     width: 90%;
     width: 90%;
+    margin: 24px auto;
+  }
+
+  .v-col-12:nth-child(2) {
+    @media (min-width: 1240px) {
+      padding: 24px 64px;
+    }
+    @media (max-width: 1240px) {
+      margin: 24px 5%;
+      max-width: 90%;
+    }
+
+    a {
+      display: flex;
+      width: 100%;
+      text-decoration: none;
+    }
   }
   }
 }
 }
 </style>
 </style>

+ 3 - 3
components/Logiciels/Artist/SomeNumbers.vue

@@ -9,7 +9,7 @@
     <v-container>
     <v-container>
       <v-row class="card-container mb-12">
       <v-row class="card-container mb-12">
         <v-col
         <v-col
-          cols="3"
+          lg="3"
           class="d-flex justify-center align-center small-padding"
           class="d-flex justify-center align-center small-padding"
         >
         >
           <CommonCardStat
           <CommonCardStat
@@ -18,14 +18,14 @@
           />
           />
         </v-col>
         </v-col>
 
 
-        <v-col cols="3" class="d-flex justify-center align-center">
+        <v-col lg="3" class="d-flex justify-center align-center">
           <CommonCardStat
           <CommonCardStat
             number="3 424"
             number="3 424"
             text="Structures"
             text="Structures"
           />
           />
         </v-col>
         </v-col>
 
 
-        <v-col cols="3" class="d-flex justify-center align-center">
+        <v-col lg="3" class="d-flex justify-center align-center">
           <CommonCardStat
           <CommonCardStat
             number="13"
             number="13"
             text="Années d'expérience"
             text="Années d'expérience"