fix(filters): land templates/workflows/campaigns search inputs at 32px to match filter buttons

The Input atom defaults to h-9 (36px) while the size="sm" filter
Buttons in the same row are h-8 (32px). On /workflows the search bar
is alone in the row so the mismatch isn't visible. On /templates and
/campaigns the type/status filter buttons sit next to the search bar
and the row stretches to the Input's 36px, visibly offsetting the
buttons. Shrink the search Input to h-8 text-xs on all three pages
and add sm:items-center to the filter rows so the controls vertically
center.
This commit is contained in:
Tania Sanz
2026-05-17 15:57:14 +02:00
parent 53b631e6c6
commit 283f40239d
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ export default function WorkflowsPage() {
placeholder="Search workflows..."
value={searchInput}
onChange={e => setSearchInput(e.target.value)}
className="pl-10 pr-10"
className="pl-10 pr-10 h-8 text-xs"
/>
{searchInput && (
<button