From a07038e4bd360b5699a068eabfee57483fa1e3af Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 24 Jul 2026 17:11:36 +0300 Subject: [PATCH] pad chat messages from above and force full-height --- src/components/chat_view/chat_view.scss | 14 +++++++++++++- src/components/chat_view/chat_view.vue | 21 ++++++++++++--------- 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/src/components/chat_view/chat_view.scss b/src/components/chat_view/chat_view.scss index 8cc74567e..c490546bc 100644 --- a/src/components/chat_view/chat_view.scss +++ b/src/components/chat_view/chat_view.scss @@ -1,6 +1,18 @@ .chat-view { display: flex; - height: 100%; + margin-bottom: -1em; + margin-top: -1em; + + .chat-list-wrapper { + display: flex; + flex-direction: column; + height: 100%; + } + + .top-spacer { + flex: 1 1 0; + min-height: 0; + } .chat-view-inner { height: auto; diff --git a/src/components/chat_view/chat_view.vue b/src/components/chat_view/chat_view.vue index aa2d90cbc..f24c892fd 100644 --- a/src/components/chat_view/chat_view.vue +++ b/src/components/chat_view/chat_view.vue @@ -35,15 +35,18 @@ /> - +
+
+ +