From b26382f427d07ea20ab03a7e17e400dc9807b037 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 5 Apr 2026 14:45:28 -0400 Subject: [PATCH] polish: clamp park column width, prevent park name line wrap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Column uses clamp(220px, 22%, 280px) — scales on small screens, caps at 280px on large ones. Park name gets whiteSpace:nowrap so it stays one line. Co-Authored-By: Claude Sonnet 4.6 --- components/WeekCalendar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/WeekCalendar.tsx b/components/WeekCalendar.tsx index 3fe6aea..2da0eae 100644 --- a/components/WeekCalendar.tsx +++ b/components/WeekCalendar.tsx @@ -229,7 +229,7 @@ function ParkRow({ }}>
- + {park.name} {rideCounts?.[park.id] !== undefined && ( @@ -294,7 +294,7 @@ export function WeekCalendar({ parks, weekDates, data, grouped, rideCounts, coas tableLayout: "fixed", }}> - + {weekDates.map((d) => ( ))}