aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-04-12 17:03:29 +0300
committerHenry Jameson <me@hjkos.com>2022-04-12 17:03:29 +0300
commite5eca8a554446dfdfbe6049d14737979074cf18d (patch)
treee0eccc2e3f1fa47c4c5d24949efe9cfb9bc0d6dd /src
parent0db756b4a55cafb59e8ab5baf721998b7289e937 (diff)
reduce chats jumpiness
Diffstat (limited to 'src')
-rw-r--r--src/components/chat/chat.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/chat/chat.scss b/src/components/chat/chat.scss
index 7b4dd37f..430319d9 100644
--- a/src/components/chat/chat.scss
+++ b/src/components/chat/chat.scss
@@ -13,12 +13,13 @@
}
.chat-view-body {
+ box-sizing: border-box;
background-color: var(--chatBg, $fallback--bg);
display: flex;
flex-direction: column;
width: 100%;
overflow: visible;
- min-height: 100%;
+ min-height: calc(100vh - var(--navbar-height));
margin: 0 0 0 0;
border-radius: 10px 10px 0 0;
border-radius: var(--panelRadius, 10px) var(--panelRadius, 10px) 0 0;