diff --git a/src/components/IntervalIndicator.tsx b/src/components/IntervalIndicator.tsx index 6024763..590b17f 100644 --- a/src/components/IntervalIndicator.tsx +++ b/src/components/IntervalIndicator.tsx @@ -23,7 +23,7 @@ function IntervalIndicator({ key={index} className={`w-7 flex justify-center rounded-full ${ isIntervalActive(interval, value) ? indicatorColor : "background-none" - } border-solid border-2 ${highlight.includes(interval) && borderHighlightColor}`} + } border-2 ${highlight.includes(interval) && borderHighlightColor}`} > {interval} diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 9a0c0cd..db61f6d 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -87,7 +87,7 @@ function Home({ day }: { day: number }) { title={"Day of practice box, border to indicate problems exist"} value={day} intervals={intervals} - indicatorColor="bg-sky-300" + indicatorColor="bg-fuchsia-700" borderHighlightColor="border-fuchsia-500" highlight={boxesWithProblems} /> @@ -105,7 +105,7 @@ function Home({ day }: { day: number }) { if (isLoading) return; return ( -