From 60ff98080923e659341c0300f787ae728b48c09c Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Wed, 16 Sep 2026 16:30:35 -0400 Subject: [PATCH] fix(frontend): header swap breakpoint down to mobile width - all 16 min-[950px] instances (the only file using the custom breakpoint) become standard sm:, so inline search survives the whole tablet range and the hamburger appears only once search leaves at true mobile width; avatar present throughout either way - the top-bar search wrapper was also missing its base hidden, which rendered search twice below the breakpoint; fixed in the same pass --- frontend/src/helperComponents/Header.svelte | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/helperComponents/Header.svelte b/frontend/src/helperComponents/Header.svelte index c1aa211..c1f7956 100644 --- a/frontend/src/helperComponents/Header.svelte +++ b/frontend/src/helperComponents/Header.svelte @@ -34,9 +34,9 @@ >
-
+ @@ -47,7 +47,7 @@ menu.classList.toggle("hidden"); }} type="button" - class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm rounded-lg min-[950px]:hidden focus:outline-none focus:ring-2 text-gray-400 hover:bg-gray-700 focus:ring-gray-600" + class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm rounded-lg sm:hidden focus:outline-none focus:ring-2 text-gray-400 hover:bg-gray-700 focus:ring-gray-600" aria-controls="navbar-user" aria-expanded="false" > @@ -70,11 +70,11 @@