Constrain playout preview to 960px for 1080p screens

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 <noreply@anthropic.com>
This commit is contained in:
Zac Gaetano 2026-06-01 03:16:19 +00:00
parent c1512e29c5
commit 66ff7065ec

View file

@ -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;
}