From a03983d6258d8731a2aaaed1cda2e7890c9865cb Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Mon, 22 Apr 2024 00:09:39 +0200 Subject: [PATCH 1/2] fix bar height --- frontend/src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index cc62e8f..78b655e 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -162,12 +162,12 @@ window.addEventListener('hashchange', () => { margin-top: var(--header-size); top:0; left:0; - padding: 25px 0 0; + padding: 25px 0 25px 0; width: 70px ; background-color: rgb(53, 53, 53); border-right:5px; border-color:black; - height: 100%; + height: calc( 100% - var(--header-size) ); position: fixed; overflow: scroll; transition-duration: .3s; From 043f5c87d26818a54fb069429234a7b1b0779e77 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Mon, 22 Apr 2024 00:12:59 +0200 Subject: [PATCH 2/2] fixup! fix bar height --- frontend/src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 78b655e..07706b0 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -162,12 +162,12 @@ window.addEventListener('hashchange', () => { margin-top: var(--header-size); top:0; left:0; - padding: 25px 0 25px 0; + padding: 25px 0; width: 70px ; background-color: rgb(53, 53, 53); border-right:5px; border-color:black; - height: calc( 100% - var(--header-size) ); + height: calc( 95% - var(--header-size) ) ; position: fixed; overflow: scroll; transition-duration: .3s;