Fix mobile responsive layout across frontend#15
Merged
Conversation
Co-authored-by: atauln <43101822+atauln@users.noreply.github.com>
Co-authored-by: atauln <43101822+atauln@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix mobile responsiveness for text, tables, and charts
Fix mobile responsive layout across frontend
Feb 7, 2026
atauln
approved these changes
Feb 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tables, text, and grids overflow horizontally on mobile devices, making the app unusable on small screens.
Changes
Tables
overflow-x: autocontainers with touch scrollingGrids & Layouts
xs: 100%→sm: 100%→md: 100%(stack vertically)xs: 100%→sm: 50%→md: 33%xs: 1col→sm: 2col→md: auto-fitText Overflow
wordBreak: 'break-word'to Typography components displaying user-generated content (deck names, commander names, URLs)overflowWrapwhere neededForms & Controls
{ xs: '100%', sm: 'auto' }width patternsminHeight: '44px'for touch targetsflexWrap: 'wrap'Global Styles
html, body { max-width: 100%; overflow-x: hidden; }box-sizing: border-boxresetExample Pattern
Charts (LineChart/MultiLineChart) already use
width="100%"with resize listeners - no changes needed.Original prompt
This pull request was created from Copilot chat.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.