From c50354b8f6b7594ae1c176714a05a60314efafef Mon Sep 17 00:00:00 2001 From: Nikita Krupin Date: Mon, 21 Mar 2022 16:34:34 -0400 Subject: [PATCH] top navbar in a separate component for convenience, searchbar UI improvements --- NUXT/.gitignore | 2 + NUXT/components/bottomNavigation.vue | 41 +++++++---- NUXT/components/topNavigation.vue | 86 +++++++++++++++++++++++ NUXT/layouts/default.vue | 100 ++++++++------------------- NUXT/pages/mods/tweaks.vue | 7 +- 5 files changed, 151 insertions(+), 85 deletions(-) create mode 100644 NUXT/components/topNavigation.vue diff --git a/NUXT/.gitignore b/NUXT/.gitignore index e1da6ae..cfb27e2 100644 --- a/NUXT/.gitignore +++ b/NUXT/.gitignore @@ -1,3 +1,5 @@ +#IDEs +.vscode # Logs logs *.log diff --git a/NUXT/components/bottomNavigation.vue b/NUXT/components/bottomNavigation.vue index fb21134..789e943 100644 --- a/NUXT/components/bottomNavigation.vue +++ b/NUXT/components/bottomNavigation.vue @@ -1,32 +1,47 @@ - diff --git a/NUXT/layouts/default.vue b/NUXT/layouts/default.vue index 9d63871..f6ff7ed 100644 --- a/NUXT/layouts/default.vue +++ b/NUXT/layouts/default.vue @@ -1,40 +1,12 @@