From e4b0b5d7e760840c214a2a06f0a0d8d8806143c2 Mon Sep 17 00:00:00 2001 From: Michael Kupietz <26891995+kupietools@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:54:03 -0500 Subject: [PATCH 1/2] Update #message width to keep from running off right edge of narrow screens --- templates/chat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/chat.php b/templates/chat.php index 53555c2..31407f0 100644 --- a/templates/chat.php +++ b/templates/chat.php @@ -56,7 +56,7 @@ } #message { font-size: 15px; - width: 400px; + width: 90vw; } #irc_notice { position: absolute; From 80b58e81ae1a7079872fc1294802a4be5b0e8bf1 Mon Sep 17 00:00:00 2001 From: Michael Kupietz <26891995+kupietools@users.noreply.github.com> Date: Sat, 21 Dec 2024 20:18:35 -0500 Subject: [PATCH 2/2] Update chat.php Just changing the width didn't account for problems when the sidebar is showing. --- templates/chat.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/chat.php b/templates/chat.php index 31407f0..c7e3381 100644 --- a/templates/chat.php +++ b/templates/chat.php @@ -56,7 +56,8 @@ } #message { font-size: 15px; - width: 90vw; + width: 400px; + max-width: 95vw; } #irc_notice { position: absolute;