diff --git a/components/WeekCalendar.tsx b/components/WeekCalendar.tsx
index 414ba2f..3fe6aea 100644
--- a/components/WeekCalendar.tsx
+++ b/components/WeekCalendar.tsx
@@ -216,7 +216,6 @@ function ParkRow({
padding: 0,
borderBottom: "1px solid var(--color-border)",
borderRight: "1px solid var(--color-border)",
- whiteSpace: "nowrap",
verticalAlign: "middle",
background: rowBg,
transition: "background 120ms ease",
@@ -230,7 +229,7 @@ function ParkRow({
}}>
-
+
{park.name}
{rideCounts?.[park.id] !== undefined && (
@@ -246,12 +245,12 @@ function ParkRow({
}} />
)}
-
+
{park.location.city}, {park.location.state}
{rideCounts?.[park.id] !== undefined && (
-
+
{rideCounts[park.id]} {coastersOnly
? (rideCounts[park.id] === 1 ? "coaster" : "coasters")
: (rideCounts[park.id] === 1 ? "ride" : "rides")} operating
@@ -295,7 +294,7 @@ export function WeekCalendar({ parks, weekDates, data, grouped, rideCounts, coas
tableLayout: "fixed",
}}>
-
+
{weekDates.map((d) => (
))}