Parcourir la source

Merge branch 'hotfix/V8-6351-cookies---responsive--trop-grand' into develop

Olivier Massot il y a 1 an
Parent
commit
5edbda21bc
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      components/Common/CookiesConsent.vue

+ 5 - 1
components/Common/CookiesConsent.vue

@@ -449,13 +449,17 @@ onMounted(() => {
   bottom: 10px;
   left: 15px;
   max-width: 550px;
-  z-index: 1000 !important;
+  z-index: 10000 !important;
   display: flex;
   flex-direction: column;
   align-items: center;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
   border-radius: 15px;
   padding: 20px;
+
+  @media (max-width: 600px) {
+    max-width: 90%;
+  }
 }
 
 .cookie-image {