From 630dc7578748f503b08fc3a98681771c09109022 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Fri, 22 May 2026 23:55:36 -0400 Subject: [PATCH] fix(web-ui): hide search wrapper (with dropdown) on narrow screens Previously the responsive rule hid only .search, leaving the dropdown positioned on its own wrapper. Target .search-wrap so input + results both hide together. --- services/web-ui/public/styles-fixes.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web-ui/public/styles-fixes.css b/services/web-ui/public/styles-fixes.css index c788525..051c3ff 100644 --- a/services/web-ui/public/styles-fixes.css +++ b/services/web-ui/public/styles-fixes.css @@ -40,7 +40,7 @@ .topbar .spacer { flex: 1; min-width: 8px; } @media (max-width: 1100px) { - .topbar .search { display: none; } + .topbar .search-wrap { display: none; } } @media (max-width: 900px) { .topbar .status-pip span:not(.dot) { display: none; }