Fix horizontal overflow on Galaxy S24 (360px width)#81
Merged
Conversation
- Add overflow-x: hidden to html, body, and root to prevent horizontal scrolling - Add box-sizing and width constraints to Layout container - Add extra small screen breakpoint (max-width: 400px) for Galaxy S24-like devices - Reduce padding and font sizes for tabs on narrow screens - Improve SetLogger and WorkoutExerciseCard grid responsiveness - Ensure all containers prevent horizontal overflow Co-authored-by: wulfland <5276337+wulfland@users.noreply.github.com>
- Remove empty html rule block - Remove duplicate overflow-x and max-width declarations (already set globally) Co-authored-by: wulfland <5276337+wulfland@users.noreply.github.com>
- Increase button min-width and min-height from 42px to 44px for WCAG AAA compliance Co-authored-by: wulfland <5276337+wulfland@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix responsiveness issues on Galaxy S24
Fix horizontal overflow on Galaxy S24 (360px width)
Feb 11, 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.
App displayed incorrectly on Galaxy S24 and similar narrow devices (360px width), causing horizontal scrolling and content clipping.
Root Cause
Changes
Global overflow prevention
New extra-small breakpoint
@media (max-width: 400px)targeting Galaxy S24-like devicesComponent adjustments at < 400px
grid-template-columns: 26px 1fr 48px 42px 88px(was causing overflow)Before/After
Before
After (360x800)
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.