refactor: Adjust logo dimensions for improved responsiveness in Navbar and Login components

- Update logo sizes in Navbar.vue and Login.vue to enhance visual consistency and responsiveness across the application.
This commit is contained in:
padreug 2025-07-30 00:00:43 +02:00
parent a461dd656e
commit 31fe244089
2 changed files with 22 additions and 58 deletions

View file

@ -55,7 +55,7 @@ const handleLogout = async () => {
<!-- Logo and Desktop Navigation -->
<div class="flex items-center gap-6">
<router-link to="/" class="flex items-center gap-2 text-foreground hover:text-foreground/90">
<img src="@/assets/logo.png" alt="Logo" class="h-8 w-8 sm:h-10 sm:w-10 md:h-12 md:w-12" />
<img src="@/assets/logo.png" alt="Logo" class="h-10 w-10 sm:h-12 sm:w-12 md:h-14 md:w-14" />
<span class="font-semibold">{{ t('nav.title') }}</span>
</router-link>