From 61531410847c32ac64a33a4791babb900accff0e Mon Sep 17 00:00:00 2001 From: ivorycrayon Date: Sun, 24 May 2026 11:16:55 -0700 Subject: [PATCH] fix(picker): left-align row name and track count MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- src/components/Picker.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/components/Picker.tsx b/src/components/Picker.tsx index 795a54f..6a65b71 100644 --- a/src/components/Picker.tsx +++ b/src/components/Picker.tsx @@ -374,13 +374,7 @@ export default function Picker({ + <>

) : null} - + } body={ <> -
+ {/* text-left overrides Stage's text-center default for the + list — text-align is inherited, so the row name + track + count inside each PlaylistRow pick this up without needing + their own alignment classes. The loading + empty paragraphs + below carry their own text-center, so they stay centered. */} +
{state.status === "loading" ? (

Loading your playlists