From ab74f5ce89f6657323d72758636cc41818eaef8c Mon Sep 17 00:00:00 2001
From: Remi  PLANEL <rplanel@pasteur.fr>
Date: Wed, 3 Apr 2024 17:38:55 +0200
Subject: [PATCH] footer not fixed

---
 components/Footer.vue        | 2 +-
 components/LayoutWrapper.vue | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/components/Footer.vue b/components/Footer.vue
index 68c39303..d50be4a5 100644
--- a/components/Footer.vue
+++ b/components/Footer.vue
@@ -2,7 +2,7 @@
 const runtimeConfig = useRuntimeConfig();
 </script>
 <template>
-    <v-footer app text-center d-flex flex-column>
+    <v-footer absolute="true" text-center d-flex flex-column>
         <div class="px-4 text-center w-100">
             <v-btn prepend-icon="mdi-source-commit" variant="plain">
                 {{ runtimeConfig.public.shortSha }}
diff --git a/components/LayoutWrapper.vue b/components/LayoutWrapper.vue
index 706f61d3..2e5792bd 100644
--- a/components/LayoutWrapper.vue
+++ b/components/LayoutWrapper.vue
@@ -64,8 +64,7 @@ function onScroll() {
           </v-col>
         </v-row>
       </v-container>
-      <Footer>
-      </Footer>
+
       <!-- <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" />
@@ -78,6 +77,8 @@ function onScroll() {
     </slot>
     <NavTableOfContent v-if="toc" :links="page.body.toc.links ?? []" />
     <nav-back-to-top />
+    <Footer>
+    </Footer>
   </VApp>
 </template>
 
-- 
GitLab