From 38334b77a336a5d09eb148db7d6f4e0b56f4ff31 Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Fri, 6 Mar 2026 17:02:29 +0800 Subject: [PATCH] =?UTF-8?q?Shrink=20color=20picker=20swatches=20(h-8=20?= =?UTF-8?q?=E2=86=92=20h-6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/calendar/CalendarForm.tsx | 2 +- frontend/src/components/calendar/SharedCalendarSettings.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/calendar/CalendarForm.tsx b/frontend/src/components/calendar/CalendarForm.tsx index be19997..1a17e18 100644 --- a/frontend/src/components/calendar/CalendarForm.tsx +++ b/frontend/src/components/calendar/CalendarForm.tsx @@ -157,7 +157,7 @@ export default function CalendarForm({ calendar, onClose }: CalendarFormProps) { key={c} type="button" onClick={() => setColor(c)} - className="h-8 w-8 rounded-full border-2 transition-all duration-150 hover:scale-110" + className="h-6 w-6 rounded-full border-2 transition-all duration-150 hover:scale-110" style={{ backgroundColor: c, borderColor: color === c ? 'hsl(0 0% 98%)' : 'transparent', diff --git a/frontend/src/components/calendar/SharedCalendarSettings.tsx b/frontend/src/components/calendar/SharedCalendarSettings.tsx index c4c85b8..1d0b049 100644 --- a/frontend/src/components/calendar/SharedCalendarSettings.tsx +++ b/frontend/src/components/calendar/SharedCalendarSettings.tsx @@ -92,7 +92,7 @@ export default function SharedCalendarSettings({ membership, onClose }: SharedCa key={c} type="button" onClick={() => handleColorSelect(c)} - className="h-8 w-8 rounded-full border-2 transition-all duration-150 hover:scale-110" + className="h-6 w-6 rounded-full border-2 transition-all duration-150 hover:scale-110" style={{ backgroundColor: c, borderColor: localColor === c ? 'hsl(0 0% 98%)' : 'transparent',