refactor: Update logo dimensions and enhance visual consistency in Navbar and Login components

- Replace logo image in Navbar.vue with a new asset and adjust dimensions for better responsiveness.
- Modify logo size in Login.vue to improve layout and maintain visual consistency across the application.
This commit is contained in:
padreug 2025-07-29 23:51:17 +02:00
parent 90c2b445bd
commit a461dd656e
2 changed files with 5 additions and 6 deletions

View file

@ -55,8 +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-72px.png" alt="Logo" class="h-14 -14" />
<!-- srcset="@/assets/logo-24px.png 1x, @/assets/logo-48px.png 2x, @/assets/logo-72px.png 3x" -->
<img src="@/assets/logo.png" alt="Logo" class="h-8 w-8 sm:h-10 sm:w-10 md:h-12 md:w-12" />
<span class="font-semibold">{{ t('nav.title') }}</span>
</router-link>