Fix iPhone workout layout: make action buttons visible#75
Merged
Conversation
… action buttons Co-authored-by: wulfland <5276337+wulfland@users.noreply.github.com>
Co-authored-by: wulfland <5276337+wulfland@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix alignment issues for weight and reps on iPhone
Fix iPhone workout layout: make action buttons visible
Feb 5, 2026
Owner
|
@copilot - the fields are overlapping in the screenshots. Can we remove the -2,5 and +2,5. I think that is not so important than a good looking layout. This is the most important form. |
Copilot stopped work on behalf of
wulfland due to an error
February 5, 2026 16:16
Simplified the weight input by removing the increment/decrement buttons: - Removes width constraints that caused overflow on iPhone - Users can still adjust weight by typing or using native number input controls - More space for essential columns (weight, reps, RIR, actions) - Simplified grid layout for mobile: 28px | 1fr | 60px | 44px | 80px Fixes alignment issues on iPhone reported in #74
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.
On iPhone (390px viewport), the set logger grid overflowed, hiding RIR column and action buttons (complete/remove set). Users couldn't complete sets or start rest timer.
Changes
Removed -2.5/+2.5 weight adjustment buttons
stepattribute set to2.5for convenient keyboard/stepper adjustmentsSimplified mobile grid layout (≤640px)
28px | 1fr | 60px | 44px | 80px1fr) instead of fixed button groupAccessibility preserved
Modified files
src/components/workouts/SetLogger.tsx- Removed weight buttons, simplified JSXsrc/components/workouts/SetLogger.css- Simplified grid and removed button stylesScreenshots
Before: Action buttons cut off, layout overflowing

Fixes #74