From aae5310802539712133720c9d2b51a478646ca8b Mon Sep 17 00:00:00 2001 From: Arthur Lefebvre Date: Wed, 11 Feb 2026 15:02:45 +0100 Subject: [PATCH] Mobile: add burger to display navigation menu --- front/src/AppNavBar.vue | 54 +++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 23 deletions(-) diff --git a/front/src/AppNavBar.vue b/front/src/AppNavBar.vue index 602a195..bf9500e 100644 --- a/front/src/AppNavBar.vue +++ b/front/src/AppNavBar.vue @@ -8,11 +8,13 @@ const router = useRouter(); const popupDisplay = ref(false) + const isMenuActive = ref(false) function logout() { authStore.logout(); router.push('/'); } +