fix: prevent content overflow on right side of screen #28
Reference in New Issue
Block a user
Delete Branch "bugfix/23-content-overflow"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #23
Problem
Content running off the right side of the screen without enabling scroll in the container.
Root Cause
Multiple tables and containers used
overflow-hiddenwhich clips content instead of enabling horizontal scroll. The root layout also lackedoverflow-x-hiddenas a defensive measure.Changes
overflow-x-hiddento<body>in root layout as defensive measureoverflow-hiddentooverflow-x-autoin:src/app/admin/players/page.tsx(player management table with 7 columns)src/app/rankings/RankingsClient.tsx(3 ranking tables - Elo, Glicko-2, OpenSkill)min-w-0 overflow-hiddento Navigation flex containersflex-shrink-0to EuchreCamp wordmark linkTest Results
All 27 Cucumber scenarios pass (116 steps).
6fd273c16ctoce13bae949