polish: ride count copy, open indicator, and badge sizing
All checks were successful
Build and Deploy / Build & Push (push) Successful in 1m5s

- "X rides open" → "X rides operating" (desktop + mobile)
- Green glowing dot next to park name when actively operating
- Hours text in calendar cells: larger (0.78rem) and bolder (600)
- Parks open badge: green tint when parks are open, larger text

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-04 20:54:14 -04:00
parent fbf4337a83
commit f1fec2355c
3 changed files with 28 additions and 16 deletions

View File

@@ -90,7 +90,7 @@ export function ParkCard({ park, weekDates, parkData, today, openRideCount }: Pa
fontWeight: 500,
textAlign: "right",
}}>
{openRideCount} open
{openRideCount} {openRideCount === 1 ? "ride" : "rides"} operating
</div>
)}
</div>