From e7282fa3d66c2bc35adf27446822b0091800d3c7 Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Mon, 20 Apr 2026 17:12:03 +0200 Subject: [PATCH] feat(05-02): remove hardcoded rounded-* from CategorySection, ChartEmptyState, QuickAddPicker - CategorySection: remove rounded-md from collapsible trigger button - ChartEmptyState: remove rounded-lg from empty state border container - QuickAddPicker: remove rounded-sm from picker item buttons - QuickAddPicker: remove rounded-full from category dot indicator --- src/components/QuickAddPicker.tsx | 4 ++-- src/components/dashboard/CategorySection.tsx | 2 +- src/components/dashboard/charts/ChartEmptyState.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/QuickAddPicker.tsx b/src/components/QuickAddPicker.tsx index 8a3fcba..198c7e3 100644 --- a/src/components/QuickAddPicker.tsx +++ b/src/components/QuickAddPicker.tsx @@ -153,7 +153,7 @@ export default function QuickAddPicker({ budgetId }: QuickAddPickerProps) { type="button" role="option" aria-selected={false} - className="flex w-full items-center gap-2 rounded-sm px-2 py-1.5 text-sm hover:bg-accent hover:text-accent-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring" + className="flex w-full items-center gap-2 px-2 py-1.5 text-sm hover:bg-accent hover:text-accent-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring" onClick={() => handlePickItem(item)} > {item.icon && ( @@ -198,7 +198,7 @@ export default function QuickAddPicker({ budgetId }: QuickAddPickerProps) {
{t(`categories.types.${type}`)} diff --git a/src/components/dashboard/CategorySection.tsx b/src/components/dashboard/CategorySection.tsx index 74b3b58..1aa095a 100644 --- a/src/components/dashboard/CategorySection.tsx +++ b/src/components/dashboard/CategorySection.tsx @@ -70,7 +70,7 @@ export function CategorySection({