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)}