From d5cb1595106802c598f31fbd8d701c182e14d3c6 Mon Sep 17 00:00:00 2001 From: ErrorSyntax1 Date: Tue, 3 Dec 2024 14:07:48 +0900 Subject: [PATCH 1/4] =?UTF-8?q?=E3=82=B5=E3=82=A4=E3=83=89=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=81=8C=E3=83=98=E3=83=83=E3=83=80=E3=83=BC=E3=82=92?= =?UTF-8?q?=E8=A6=86=E3=81=86=E3=82=88=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 3 +-- .../NavigationBar/NavigationBar.vue | 24 ++++++++++++++++++- .../NavigationBar/NavigationLinks.vue | 1 + 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index 92f5f55a..cdbbca65 100644 --- a/src/App.vue +++ b/src/App.vue @@ -36,6 +36,7 @@ watch([() => route.fullPath, isMobile], () => { />
@@ -72,7 +73,6 @@ watch([() => route.fullPath, isMobile], () => { .navigationBarCover { position: absolute; z-index: $z-index-navigationBarCover; - top: 5rem; left: 0; height: 100%; width: 100%; @@ -82,7 +82,6 @@ watch([() => route.fullPath, isMobile], () => { .navigationBar { position: absolute; z-index: $z-index-navigationBar; - top: 5rem; left: 0; height: 100%; width: 260px; diff --git a/src/components/NavigationBar/NavigationBar.vue b/src/components/NavigationBar/NavigationBar.vue index 54826463..07718785 100644 --- a/src/components/NavigationBar/NavigationBar.vue +++ b/src/components/NavigationBar/NavigationBar.vue @@ -1,10 +1,23 @@