feat: show full park names in calendar (e.g. Six Flags Great Adventure)
All checks were successful
Build and Deploy / Build & Push (push) Successful in 3m14s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-04 11:02:28 -04:00
parent e2d90b3c5b
commit 5f82407fea

View File

@@ -42,7 +42,7 @@ export function WeekCalendar({ parks, weekDates, data }: WeekCalendarProps) {
}}>
<colgroup>
{/* Park name column */}
<col style={{ width: 172 }} />
<col style={{ width: 220 }} />
{weekDates.map((d) => (
<col key={d} style={{ width: 120 }} />
))}
@@ -136,7 +136,7 @@ export function WeekCalendar({ parks, weekDates, data }: WeekCalendarProps) {
background: parkIdx % 2 === 0 ? "var(--color-bg)" : "var(--color-surface)",
}}>
<div style={{ fontWeight: 500, color: "var(--color-text)", fontSize: "0.8rem", lineHeight: 1.2 }}>
{park.shortName}
{park.name}
</div>
<div style={{ fontSize: "0.65rem", color: "var(--color-text-muted)", marginTop: 2 }}>
{park.location.city}, {park.location.state}