From 1e57e6a6154a124dec8830ce84e3596e7eb05a31 Mon Sep 17 00:00:00 2001 From: videogame hacker Date: Wed, 16 Feb 2022 05:55:44 +0000 Subject: [PATCH] Shrink chatbox horizontal padding This was designed for the vertical layout --- frontend/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/styles.css b/frontend/styles.css index 7b77ee4..927ae36 100644 --- a/frontend/styles.css +++ b/frontend/styles.css @@ -212,14 +212,14 @@ button.small-button { } #chatbox { - padding: 0.5em 2em; + padding: 0.5em 0.5em; overflow-y: scroll; flex-shrink: 1; flex-grow: 1; } #viewer-list { - padding: 0.5em 2em; + padding: 0.5em 0.5em; /* TODO: turn this into max-height instead of fixed height without breaking the chatbox height */ overflow-y: scroll; border-bottom: var(--fg); @@ -238,7 +238,7 @@ button.small-button { } #chatbox-send { - padding: 0 2em; + padding: 0 0.5em; padding-bottom: 0.5em; position: relative; }