From d3ed50f736eb62f6240ab00fe5ec3e703b5cd453 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Fri, 29 May 2026 11:53:35 -0400 Subject: [PATCH] fix(web): align automation search input height with filter buttons The search input used text-sm (20px line-height) while the filter buttons use text-xs (16px), both with py-2, making the input 4px taller. Trim the input to py-1.5 so it matches the buttons' 34px height without resizing the shared filter button components. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/fabro-web/app/routes/automation-detail.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/fabro-web/app/routes/automation-detail.tsx b/apps/fabro-web/app/routes/automation-detail.tsx index 19bac1ecd..d8c3021dc 100644 --- a/apps/fabro-web/app/routes/automation-detail.tsx +++ b/apps/fabro-web/app/routes/automation-detail.tsx @@ -346,7 +346,7 @@ function AutomationRunsList({ automationId }: { automationId: string }) { placeholder="Search runs…" value={query} onChange={(e) => setQuery(e.target.value)} - className="w-full rounded-md border border-line bg-panel/80 py-2 pl-9 pr-3 text-sm text-fg-2 placeholder-fg-muted outline-none transition-colors focus:border-focus focus:ring-0" + className="w-full rounded-md border border-line bg-panel/80 py-1.5 pl-9 pr-3 text-sm text-fg-2 placeholder-fg-muted outline-none transition-colors focus:border-focus focus:ring-0" />