From fb068cce69ea3b2bd020fcb056730bdf8816c54f Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Thu, 25 Apr 2024 15:10:02 +0200 Subject: [PATCH] remove min-width for main --- components/LayoutWrapper.vue | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/components/LayoutWrapper.vue b/components/LayoutWrapper.vue index 2e5792bd..035ca8d2 100644 --- a/components/LayoutWrapper.vue +++ b/components/LayoutWrapper.vue @@ -53,8 +53,7 @@ function onScroll() { <v-container v-scroll="onScroll" :fluid="fluid"> <v-row justify="center"> <v-col cols="auto" class="pa-0"> - <v-card flat color="transparent" :min-width="mobile ? undefined : 900" - :max-width="fluid ? undefined : 1280"> + <v-card flat color="transparent" :max-width="fluid ? undefined : 1500"> <v-card-text class="pa-0"> <slot /> </v-card-text> @@ -64,11 +63,6 @@ function onScroll() { </v-col> </v-row> </v-container> - - <!-- <div class="i-ph-anchor-simple-thin d-none" /> - <div class="i-tabler:database d-none" /> - <div class="i-mdi:book-education-outline d-none" /> - <div class="i-tabler:help d-none" /> --> </v-main> <NavNavbar v-model:drawer="drawer" :title="title !== null ? title : undefined" :density="density" :drawer-enabled="navDrawer" /> -- GitLab