From d3a3f41b63a674b57b9f8b170a17e5e1af3c5daa Mon Sep 17 00:00:00 2001 From: npeter83 Date: Sun, 26 Jul 2026 03:34:05 +0200 Subject: [PATCH] fix(player): left-align the big-view control bar so overflow scrolls from the start MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit justify-center + overflow-x-auto stranded the left-end controls (Previous, the N/M counter) when the bar overflowed a narrow window. justify-start makes the overflow scroll from the start — and matches the conventional left-aligned video-player control bar. --- frontend/src/components/PlayerModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/PlayerModal.tsx b/frontend/src/components/PlayerModal.tsx index 157d8da..a720f13 100644 --- a/frontend/src/components/PlayerModal.tsx +++ b/frontend/src/components/PlayerModal.tsx @@ -877,7 +877,7 @@ export default function PlayerModal({ {(maximized || isFullscreen) && (
e.stopPropagation()} - className="absolute inset-x-0 bottom-0 z-menu flex h-14 items-center justify-center gap-x-3 overflow-x-auto border-t border-white/10 bg-neutral-950/95 px-3 text-sm text-white" + className="absolute inset-x-0 bottom-0 z-menu flex h-14 items-center justify-start gap-x-3 overflow-x-auto border-t border-white/10 bg-neutral-950/95 px-3 text-sm text-white" > {hasQueue && ( <>