From 19ef7911ae39dba19a2c1132cbc83dbdb4588d6b Mon Sep 17 00:00:00 2001 From: videogame hacker Date: Thu, 17 Feb 2022 06:24:52 +0000 Subject: [PATCH] Make the chatbox take up more space in the vertical layout --- frontend/styles.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/frontend/styles.css b/frontend/styles.css index 750bdb2..3151a57 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -49,7 +49,7 @@ video { } #video-container { - flex-grow: 1; + flex-grow: 0; flex-shrink: 1; display: none; } @@ -233,7 +233,7 @@ button.small-button { #chatbox-container { background-color: var(--bg); flex-direction: column; - flex-grow: 0; + flex-grow: 1; flex-shrink: 1; flex-basis: 55ch; overflow: hidden; @@ -329,6 +329,11 @@ input[type="color"]::-webkit-color-swatch-wrapper { #chatbox-container { height: 100vh !important; + flex-grow: 0; + } + + #video-container { + flex-grow: 1; } #chatbox {