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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user