Browse Source

various fixes

Olivier Massot 1 năm trước cách đây
mục cha
commit
82d8ed8711

+ 6 - 1
components/Common/ActionMenu.vue

@@ -67,7 +67,7 @@ const defaultActions: Array<ActionMenuItem> = [
   },
   {
     type: ActionMenuItemType.CALL_US,
-    color: "primary",
+    color: "secondary",
     icon: "fas fa-phone",
     text: "Nous Appeler",
   },
@@ -170,6 +170,11 @@ const onActionClick = (action: ActionMenuItem) => {
   cursor: pointer;
 
   transition: transform 0.3s ease-in-out;
+  box-shadow: -1px 2px 4px 2px var(--on-neutral-color-light);
+}
+
+.square:last-child {
+
 }
 
 .square:hover {

+ 1 - 1
components/Common/ReviewSection.vue

@@ -148,7 +148,7 @@ const goNext = () => {
     text-align: justify;
     min-height: 120px;
     overflow: auto;
-    font-size: 0.9rem;
+    font-size: 1rem;
     flex: 1;
   }
 

+ 1 - 0
components/Contact/Form.vue

@@ -130,6 +130,7 @@
               :items="products"
               item-value="id"
               item-title="label"
+              variant="outlined"
             />
           </v-col>
         </v-row>

+ 1 - 1
components/Formation/Catalogue.vue

@@ -230,7 +230,7 @@ const courses: Array<Training> = [
     .number-card {
       font-weight: 500;
       font-size: 1.3rem;
-      color: var(--secondary-color);
+      color: var(--primary-color);
       margin-right: 1rem;
     }
   }

+ 2 - 2
components/Home/Solution.vue

@@ -282,11 +282,11 @@ h4 {
 
     ul {
       margin-top: 0.9rem;
-      font-size: 0.5rem;
+      font-size: 16px;
     }
 
     li {
-      font-size: 0.8rem;
+      font-size: 16px;
       width: 10rem;
       margin-left: 1rem;
       line-height: 18px;

+ 0 - 5
components/News/List.vue

@@ -1,8 +1,4 @@
 <template>
-  <h1 id="news-anchor" class="title mt-12 mb-12">
-    Toutes les news
-  </h1>
-
   <div v-if="pending">
     <v-row class="justify-center progress">
       <v-progress-circular
@@ -71,7 +67,6 @@
                         <v-card-actions class="justify-end">
                           <v-btn
                             :to="`/actualites/${newsItem.id}`"
-                            prepend-icon="fas fa-info"
                             class="btn mr-2 mb-1"
                           >
                             En savoir plus

+ 25 - 0
pages/actualites/index.vue

@@ -4,6 +4,31 @@
     description="Les dernières actualités"
   />
 
+  <div id="news-anchor" />
+
+  <LayoutUITitlePage>
+    Actualités
+    <template #subtitle>Toute l'actualité de l'entreprise Opentalent</template>
+  </LayoutUITitlePage>
+
+  <CommonBanner
+    imageSrc="/images/Bannieres_Mentions_legales-CGV-Cookies.png"
+    imageAlt="banner"
+  />
+
+  <v-row class="mb-12 center-90">
+    <v-col class="d-flex align-items-center">
+      <v-btn
+        to="/"
+        prepend-icon="fas fa-arrow-left"
+        variant="outlined"
+        class="back-button"
+      >
+        Retour aux actualités
+      </v-btn>
+    </v-col>
+  </v-row>
+
   <NewsList />
 
   <LayoutFooterPrefooter />