From 250a2b07e54a176cbf1e0d2724e830c3da9f1fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20R=C3=B8skaft?= <haakoero@stud.ntnu.no> Date: Thu, 5 May 2022 10:58:23 +0200 Subject: [PATCH] Pulled main --- src/components/BaseComponents/NavBar.vue | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/components/BaseComponents/NavBar.vue b/src/components/BaseComponents/NavBar.vue index e80792a..4e27aea 100644 --- a/src/components/BaseComponents/NavBar.vue +++ b/src/components/BaseComponents/NavBar.vue @@ -11,27 +11,21 @@ /> </div> <ul class="flex justify-between"> - <li class="cursor-pointer" - @click="$router.push('/newItem')" - > + <li class="cursor-pointer" @click="$router.push('/newItem')"> <PlusIcon class="m-6 md:mr-2 h-7 text-primary-medium float-left" alt="Legg til" /> <a class="hidden md:block mt-7 text-sm float-right">Legg til</a> </li> - <li class="cursor-pointer" - @click="$router.push('/messages')" - > + <li class="cursor-pointer" @click="$router.push('/messages')"> <ChatAlt2Icon class="m-6 md:mr-2 h-7 text-primary-medium float-left" alt="Meldinger" /> <a class="hidden md:block mt-7 text-sm float-right">Meldinger</a> </li> - <li class="cursor-pointer" - @click="loadProfile" - > + <li class="cursor-pointer" @click="loadProfile"> <UserCircleIcon class="m-6 md:mr-2 h-7 text-primary-medium float-left" alt="Profil" -- GitLab