From 5e4dd7403e4a494fd6357db261228dc485cc02ae Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 5 Apr 2026 14:34:30 -0400 Subject: [PATCH] fix: keep dot next to park name, scale all text with clamp() on small screens Removed flex:1/minWidth:0 from name span so dot stays snug to the right of the park name. Removed flexShrink:0 from ride count so both sides can compress. All text uses clamp() to scale proportionally with viewport. Co-Authored-By: Claude Sonnet 4.6 --- components/WeekCalendar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/WeekCalendar.tsx b/components/WeekCalendar.tsx index 6c22163..414ba2f 100644 --- a/components/WeekCalendar.tsx +++ b/components/WeekCalendar.tsx @@ -229,8 +229,8 @@ function ParkRow({ gap: 10, }}>
-
- +
+ {park.name} {rideCounts?.[park.id] !== undefined && ( @@ -251,7 +251,7 @@ function ParkRow({
{rideCounts?.[park.id] !== undefined && ( -
+
{rideCounts[park.id]} {coastersOnly ? (rideCounts[park.id] === 1 ? "coaster" : "coasters") : (rideCounts[park.id] === 1 ? "ride" : "rides")} operating