This repository was archived by the owner on May 25, 2026. It is now read-only.
fix: left-align picker copy and lift mobile button anchor - #70
Merged
Conversation
The 70vmin hero plus the root's 39.3dvh anchor put the CTA near 58% of the viewport on 390x844 portrait, leaving the lower half mostly empty. Set --record-center-top to 34dvh in the 640px tier so the assembly recentres higher and the CTA lands near the visual midpoint without shrinking the hero. The 380/360/landscape tiers are untouched.
Stage's text-center default works for the short status views but reads as disconnected on the picker — the heading floats above a left-aligned list. Wrap the picker's h1 + subtitle in a max-w-2xl text-left column so they line up with the row content; other Stage callers keep the centered default.
3 tasks
ivorycrayon
added a commit
that referenced
this pull request
May 24, 2026
Stage's text-center cascades into the list and centers each PlaylistRow's name + track count — misaligned against the left-anchored cover art and right-anchored Shuffle control. Add text-left on the list wrapper so row text inherits left alignment without per-row classes. Removes the header text-left wrapper added in #70 (misread of the intent); the section heading returns to Stage's centered default.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Two unrelated UX nits on the same surface, kept in separate commits.
Mobile button anchor (4f777a7)
The 70vmin mobile hero + the root's 39.3dvh
--record-center-topput the CTA near 58% of the viewport on 390x844 portrait (iPhone 13-class). The lower half sat mostly empty and the button read as marooned rather than paired with the hero.Pull the anchor to 34dvh in the 640px tier so the assembly recentres higher and the CTA lands near the visual midpoint. Hero stays 70vmin. Header zone still clears ~150px at 390x844 — enough for the picker's h1 + 3-line subtitle. The 380 / 360 / landscape tiers carry their own anchors and stay untouched.
Picker text alignment (d64e1db)
Stage's
text-centerdefault works for the short status views (landing / success / error / logged-out), but on the picker it left the heading floating above a left-aligned list, and the multi-line subtitle wrapped awkwardly mid-phrase.Wrap the picker's h1 + subtitle in a
w-full max-w-2xl text-leftcolumn so they sit flush with the row content. Other Stage callers keep the centered default.Test plan
pnpm typecheckcleanpnpm test— 127 / 127 passingpnpm lint— no new warnings (one pre-existing insrc/app/page.tsx:41)