From 466ab701d0e295af1fa1169bde741b9a6f0f5e3e Mon Sep 17 00:00:00 2001 From: "johannes.vos" Date: Thu, 4 Jun 2026 13:22:30 +0200 Subject: [PATCH] style(nav): reduce navbar horizontal padding on small screens for better alignment --- src/features/nav/components/Navbar.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/features/nav/components/Navbar.vue b/src/features/nav/components/Navbar.vue index 08f5855..6372a7b 100644 --- a/src/features/nav/components/Navbar.vue +++ b/src/features/nav/components/Navbar.vue @@ -90,5 +90,8 @@ import NavbarSearchBarWrapper from './NavbarSearchBarWrapper.vue'; .navbar-search-bar-wrapper-small-screens { display: block; } + .global-nav { + padding: 18px 16px; + } }