From 59a4b8e87e77556013ecac31909b0d8ebe6687ee Mon Sep 17 00:00:00 2001 From: Nico Ritschel Date: Fri, 3 Jul 2026 19:52:37 -0700 Subject: [PATCH] Make AppShell responsive on narrow screens --- webapp/src/components/AppShell.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/webapp/src/components/AppShell.tsx b/webapp/src/components/AppShell.tsx index b823506b..7d94f866 100644 --- a/webapp/src/components/AppShell.tsx +++ b/webapp/src/components/AppShell.tsx @@ -13,8 +13,8 @@ export function AppShell({ brand, toolbar, filters, rail, children }: AppShellPr const [railOpen, setRailOpen] = useState(true); return ( -
-
+
+
-
{toolbar}
+
+ {toolbar} +
{filters ? ( // Fixed height so the bar doesn't jump when pills replace the "No filters" text. -
+
{filters}
) : null} -
-
);