fix: weather delay text wraps within its box, no longer collides with park name
All checks were successful
Build and Deploy / Build & Push (push) Successful in 54s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Josh Wright
2026-04-05 15:56:12 -04:00
parent b1204c95cb
commit b4af83b879

View File

@@ -248,7 +248,7 @@ function ParkRow({
</div> </div>
</div> </div>
{isWeatherDelay && ( {isWeatherDelay && (
<div style={{ fontSize: "0.7rem", color: "var(--color-text-muted)", fontWeight: 500, textAlign: "right" }}> <div style={{ fontSize: "0.7rem", color: "var(--color-text-muted)", fontWeight: 500, textAlign: "right", maxWidth: 72, lineHeight: 1.3 }}>
Weather Delay Weather Delay
</div> </div>
)} )}