From 027a85fb06bc88cdaf3af75224a6978ac3aa7d93 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Wed, 18 Mar 2026 10:32:29 +0100 Subject: [PATCH] fix: match filter pills row height to breadcrumb bar (45px) Rework feedback: filter pills row used py-1.5 padding instead of a fixed 45px height, causing visual misalignment with the breadcrumb bar. Replace padding with explicit h-[45px] to match exactly. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/note-list/FilterPills.tsx | 2 +- tests/smoke/filter-pills-height.spec.ts | 40 ++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 tests/smoke/filter-pills-height.spec.ts diff --git a/src/components/note-list/FilterPills.tsx b/src/components/note-list/FilterPills.tsx index 7acfa807..11e8a2d7 100644 --- a/src/components/note-list/FilterPills.tsx +++ b/src/components/note-list/FilterPills.tsx @@ -15,7 +15,7 @@ const PILLS: { value: NoteListFilter; label: string }[] = [ function FilterPillsInner({ active, counts, onChange }: FilterPillsProps) { return ( -
+
{PILLS.map(({ value, label }) => (