From b046978256f29a1b1aa6f8bf6357218b5c903698 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Fri, 6 Mar 2026 23:11:36 +0100 Subject: [PATCH] =?UTF-8?q?style:=20unify=20filter=20bar=20design=20?= =?UTF-8?q?=E2=80=94=20kill=20FILTERS=20label,=20solid=20orange=20pills?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove redundant "FILTERS" uppercase label - Change pills from washed-out orange/10 border to solid brand-orange with white text for strong contrast in both light and dark mode - Pills now use rounded-lg to match the Filter button shape - FilterBar renders fragments (no wrapper div) so everything flows naturally in the parent flex row --- components/dashboard/FilterBar.tsx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/components/dashboard/FilterBar.tsx b/components/dashboard/FilterBar.tsx index fd8a1b5..80b4aad 100644 --- a/components/dashboard/FilterBar.tsx +++ b/components/dashboard/FilterBar.tsx @@ -12,19 +12,16 @@ export default function FilterBar({ filters, onRemove, onClear }: FilterBarProps if (filters.length === 0) return null return ( -
- - Filters - + <> {filters.map((f, i) => ( @@ -32,11 +29,11 @@ export default function FilterBar({ filters, onRemove, onClear }: FilterBarProps {filters.length > 1 && ( )} -
+ ) }