fix: restore 240px park column width — clamp() unreliable in col elements
All checks were successful
Build and Deploy / Build & Push (push) Successful in 54s
All checks were successful
Build and Deploy / Build & Push (push) Successful in 54s
The actual overflow fix was removing whiteSpace:nowrap from the td. With that gone, 240px is sufficient and content wraps naturally when tight. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -294,7 +294,7 @@ export function WeekCalendar({ parks, weekDates, data, grouped, rideCounts, coas
|
|||||||
tableLayout: "fixed",
|
tableLayout: "fixed",
|
||||||
}}>
|
}}>
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col style={{ width: "clamp(220px, 22%, 280px)" }} />
|
<col style={{ width: 240 }} />
|
||||||
{weekDates.map((d) => (
|
{weekDates.map((d) => (
|
||||||
<col key={d} style={{ width: 130 }} />
|
<col key={d} style={{ width: 130 }} />
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user