From 21e1888d89b1f3da09c26d5954208bb8b36ea25f Mon Sep 17 00:00:00 2001 From: Valeria Date: Wed, 16 Jul 2025 06:42:55 +0200 Subject: [PATCH] Messages in channels with little to no messages will now start at the bottom - #ghostMessages no longer has flex-grow, it was there so the input text area wouldn't go to the top - #channelw now has margin-top: auto to force messages to the bottom, shouldn't break scroller, also forces input text area to the bottom - .titlespace has a small margin at the bottom so it's not directly next to the input text area --- src/webpage/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/webpage/style.css b/src/webpage/style.css index 389b938..b7c3c24 100644 --- a/src/webpage/style.css +++ b/src/webpage/style.css @@ -1441,6 +1441,7 @@ span.instanceStatus { max-height: fit-content; flex-basis: auto; flex-grow: 0; + margin-top: auto; } .scroller { flex: 1; @@ -1462,7 +1463,6 @@ span.instanceStatus { } #ghostMessages { transform: translate(0px, -22px); - flex-grow: 1; } #pasteimage:empty { height: 0; @@ -1628,6 +1628,9 @@ span.instanceStatus { padding: 3px 36px 3px 16px; border-left: 2px solid transparent; } +.titlespace { + margin-bottom: 20px; +} .messagediv { position: relative; }