bug(mobile): "SAVE & MARK AS REVIEWED" and "MARK FOR REVIEW" buttons wrap to 3 lines at narrow widths #95
Reference in New Issue
Block a user
Delete Branch "%!s()"
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?
Severity: High — primary CTA is broken on narrow screens
On the New Document page at 320px and the Edit Document page at 375px, the primary CTA button label wraps to 3 lines inside a button that is too short to accommodate it. The button renders at ~36px height (below the 44px minimum touch target) and the wrapped text is barely legible.
Affected buttons:
Options
Option A — Shorten the label
Shorter labels fit on one line at 320px. Downside: loses some precision in wording.
Option B — Stack the save bar vertically on narrow screens
At
<420px, make the save bar a vertical stack where each button gets full width:Full-width buttons are more touch-friendly and accommodate any label length. Downside: the bar takes more vertical space when stacked.
Option C — Icon + short label on small screens, full label on larger screens
Use a responsive label: show the full text at ≥375px, collapse to a short form at <375px using a
<span class="hidden sm:inline">& Mark as Reviewed</span>pattern.Recommendation: Option B (vertical stack at <420px) + Option A (shorter labels)
Combine both: shorten "SAVE & MARK AS REVIEWED" to "Save & Review" (clear enough) AND stack the bar vertically at <420px. This handles both the label overflow and the touch target size issue in one shot. The stacked layout with full-width buttons is also significantly more accessible for senior users with motor impairments.