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) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-05-29 11:53:35 -04:00
parent 7c73f7ac02
commit d3ed50f736
No known key found for this signature in database

View file

@ -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"
/>
</div>