diff --git a/src/App.vue b/src/App.vue
index 92f5f55..cdbbca6 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 5482646..0771878 100644
--- a/src/components/NavigationBar/NavigationBar.vue
+++ b/src/components/NavigationBar/NavigationBar.vue
@@ -1,10 +1,23 @@
@@ -14,8 +27,17 @@ import NavigationBarFooter from './NavigationBarFooter.vue'
.container {
display: flex;
flex-direction: column;
- justify-content: space-between;
+ // justify-content: space-between;
background-color: $color-background-dim;
padding: 1rem 0;
+ gap: 1rem;
+}
+.closeContainer{
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-size: 1.25rem;
+ gap: 16px;
+ color: $color-secondary;
}
diff --git a/src/components/NavigationBar/NavigationLinks.vue b/src/components/NavigationBar/NavigationLinks.vue
index 20641ba..ff12b41 100644
--- a/src/components/NavigationBar/NavigationLinks.vue
+++ b/src/components/NavigationBar/NavigationLinks.vue
@@ -17,6 +17,7 @@ import { routes } from '/@/lib/routeInfo'