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
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:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user