From c184f5c679d48972e51aeaa00da70e5a45fdfb64 Mon Sep 17 00:00:00 2001 From: denshooter Date: Thu, 19 Feb 2026 21:49:24 +0100 Subject: [PATCH] Make candles bigger and fix inconsistent text sizing Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/components/CandleSection.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/CandleSection.tsx b/src/components/CandleSection.tsx index c6858b2..afc3e88 100644 --- a/src/components/CandleSection.tsx +++ b/src/components/CandleSection.tsx @@ -103,9 +103,9 @@ function SingleCandle({ candle, index }: { candle: CandleData; index: number }) const ageInHours = (now - createdTime) / (1000 * 60 * 60) const burnProgress = Math.min(ageInHours / 24, 0.4) // Burns down max 40% over 24 hours - const candleHeight = 60 * heightVariant * (1 - burnProgress) - const candleWidth = 28 * sizeVariant - const flameSize = 0.8 * sizeVariant + const candleHeight = 80 * heightVariant * (1 - burnProgress) + const candleWidth = 36 * sizeVariant + const flameSize = 1.0 * sizeVariant const delay = (index % 7) * 0.15 return ( @@ -219,7 +219,7 @@ function SingleCandle({ candle, index }: { candle: CandleData; index: number })

{relativeTime(candle.created_at)}