Skip to content

Commit

Permalink
Fix disconnect button not clickable on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
pixup1 committed Jan 26, 2025
1 parent 92ff913 commit f33ff94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,10 @@ const burger_menu = ref(false);
<img alt="Logo InsaLan" class="size-[40px]" src="@/assets/images/logo_retro.png"/>
</router-link>
<div
class="mx-5 flex flex-1 flex-col items-center justify-center"
class="mx-4 my-2 flex cursor-pointer flex-col justify-center text-center font-bold text-gray-400 hover:text-white"
:class="{ hidden: !isConnected }"
@click="logout_user"
@keydown.enter="logout_user"
>
Déconnexion
</div>
Expand Down

0 comments on commit f33ff94

Please sign in to comment.