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:
parent
c1512e29c5
commit
66ff7065ec
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@
|
||||||
/* ── Top row: PGM + right rail ───────────────────────────────────────────────── */
|
/* ── Top row: PGM + right rail ───────────────────────────────────────────────── */
|
||||||
.po-top {
|
.po-top {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 300px;
|
grid-template-columns: minmax(0, 960px) 300px;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue