From 402870026898f291d2273997631570d52465e0a4 Mon Sep 17 00:00:00 2001 From: Avery Felts Date: Sun, 25 Jan 2026 19:35:11 -0700 Subject: [PATCH] Optimize calendar: remove header text, style nav buttons --- src/components/UsageCalendar.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/components/UsageCalendar.tsx b/src/components/UsageCalendar.tsx index 4c1d054..a9b1974 100644 --- a/src/components/UsageCalendar.tsx +++ b/src/components/UsageCalendar.tsx @@ -213,9 +213,6 @@ export function UsageCalendar({ usageData, onDataUpdate, religion, onReligionUpd return ( <> - - Usage Calendar -
{/* Calendar */} @@ -228,10 +225,15 @@ export function UsageCalendar({ usageData, onDataUpdate, religion, onReligionUpd showOutsideDays={false} components={{ DayButton: CustomDayButton, - Chevron: ({ orientation }) => - orientation === 'left' - ? - : , + Chevron: ({ orientation }) => ( +
+ {orientation === 'left' ? ( + + ) : ( + + )} +
+ ), }} />