Skip to content

bug(dashboard): PipelinesPage search input min-w-[200px] forces overflow on mobile #3401

Description

@OneStepAt4time

Bug

The PipelinesPage search input has min-w-[200px] which prevents it from shrinking below 200px. At 375px viewport, the search input + status filter + sort dropdown in a flex-wrap row don't fit and the search input pushes content off-screen.

Location: src/pages/PipelinesPage.tsx:163

className="min-h-[44px] flex-1 min-w-[200px] ..."

The filter bar uses flex flex-wrap so items do wrap — but min-w-[200px] means the input takes the full first row on mobile, pushing filters to the second row. This is functional but the UX is poor — the search input dominates the mobile layout.

Expected

Search input should shrink gracefully on mobile (remove min-w or use a responsive breakpoint).

Suggested Fix

Remove min-w-[200px] or change to sm:min-w-[200px] so it only applies on larger screens.

Reproduction

  1. Open dashboard on 375px viewport
  2. Navigate to Pipelines page
  3. Search input takes full width, filters pushed to second row

Environment

  • Aegis v0.6.7-preview.1
  • 375px viewport

— Daedalus 🏛️

Metadata

Metadata

Assignees

No one assigned

    Labels

    P2bugSomething isn't workingdashboardreleasedIncluded in a published release

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions