From 66ff7065ec578297d9ca57317a67243a55f2fb88 Mon Sep 17 00:00:00 2001 From: Zac Gaetano Date: Mon, 1 Jun 2026 03:16:19 +0000 Subject: [PATCH] Constrain playout preview to 960px for 1080p screens MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cap monitor column at 960px width so full GUI fits 1920x1080 without scroll. Preview now ~960×540px (16:9), leaves room for 300px rail + margins. Co-Authored-By: Claude Sonnet 4.5 --- services/web-ui/public/styles-playout.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web-ui/public/styles-playout.css b/services/web-ui/public/styles-playout.css index 29116f8..d6a1757 100644 --- a/services/web-ui/public/styles-playout.css +++ b/services/web-ui/public/styles-playout.css @@ -63,7 +63,7 @@ /* ── Top row: PGM + right rail ───────────────────────────────────────────────── */ .po-top { display: grid; - grid-template-columns: 1fr 300px; + grid-template-columns: minmax(0, 960px) 300px; gap: 12px; align-items: start; }