From 98579b726b5cf8127b5b47a0880d958e7db00a61 Mon Sep 17 00:00:00 2001 From: "johannes.vos" Date: Thu, 4 Jun 2026 13:22:30 +0200 Subject: [PATCH 1/3] 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; + } } From 592eb7222fa4bfe17140ceb04e4b40d8a9e8891f Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 4 Jun 2026 13:38:23 +0200 Subject: [PATCH 2/3] move main content padding CSS variables to the app wrapper --- src/App.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index f128ab6..5044bf4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -42,15 +42,18 @@ watch(colorScheme, val => updateColorScheme(val))