diff --git a/components/EditGitlab.vue b/components/EditGitlab.vue
index ed11924b351e450a066b3f63d39fd8569a39827b..0a87bb19c345c3928cbe82071e1e0f6de9da2a6a 100644
--- a/components/EditGitlab.vue
+++ b/components/EditGitlab.vue
@@ -2,6 +2,7 @@
   <v-row>
     <v-col>
       <v-btn prepend-icon="mdi-gitlab" variant="text" size="small" :href="path" target="_blank">Edit on gitlab</v-btn>
+      <v-divider> </v-divider>
     </v-col>
   </v-row>
 </template>
diff --git a/components/Footer.vue b/components/Footer.vue
index d08796d04e18f879cf7f614149980805c84dc072..0834b2218f980d93ec82bb787362e5fc6d94c9c3 100644
--- a/components/Footer.vue
+++ b/components/Footer.vue
@@ -1,5 +1,5 @@
 <template>
-    <v-footer app border text-center d-flex flex-column>
+    <v-footer app text-center d-flex flex-column>
         <div class="px-4 text-center w-100">
                 <span><a href="https://mdmlab.fr/" target="_blank"><v-img src="/cropped-logoblue-288x129.png" inline :width="70"
                         :aspect-ratio="288 / 129"></v-img></a></span>
diff --git a/components/Nav/TableOfContent.vue b/components/Nav/TableOfContent.vue
index da744b193fde2a7fd233384ce21bea4112ea5e57..720ef4c27a4327680043bb53bdb71f6b88d72872 100644
--- a/components/Nav/TableOfContent.vue
+++ b/components/Nav/TableOfContent.vue
@@ -11,7 +11,7 @@ const { mobile } = useDisplay();
 </script>
 
 <template>
-  <v-navigation-drawer v-if="!mobile" id="app-toc" location="right" :border="0" permanent>
+  <v-navigation-drawer v-if="!mobile" id="app-toc" location="right" :border="0" permanent color="transparent">
     <template #prepend>
       <div class="text-h6 font-weight-medium mt-4 mb-2 ms-4">Contents</div>
     </template>
diff --git a/layouts/article-no-toc.vue b/layouts/article-no-toc.vue
index 2a009555ac7e554f8c37f72e0983d457a5beb8a5..4e842a7aef41b9f6fd1cab4816f0b9eb1dcf9f7c 100644
--- a/layouts/article-no-toc.vue
+++ b/layouts/article-no-toc.vue
@@ -13,10 +13,10 @@ import { useDisplay } from 'vuetify'
         <v-main style="min-height: 300px">
             <v-container>
                 <slot />
-                <EditGitlab />
+                <!-- <EditGitlab /> -->
                 <NavPrevNext />
             </v-container>
-            <Footer></Footer>
+            <!-- <Footer></Footer> -->
         </v-main>
         <NavNavbar />
         <nav-back-to-top />
diff --git a/layouts/article.vue b/layouts/article.vue
index d8f8a0ddde1e6c1852460e074ef92c5f531965ce..1312a62fb7d3e2dae3847873bd2fe6db72bb7440 100644
--- a/layouts/article.vue
+++ b/layouts/article.vue
@@ -28,7 +28,7 @@ function onScroll(e) {
         <EditGitlab />
         <NavPrevNext />
       </v-container>
-      <Footer></Footer>
+      <!-- <Footer></Footer> -->
     </v-main>
     <NavNavbar :density="density" />
     <NavTableOfContent :links="page.body.toc.links" />