aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2020-11-02 20:57:56 +0200
committerHenry Jameson <me@hjkos.com>2020-11-02 21:03:55 +0200
commitbdf2f36f11a0768dd21c28ba149de4d5e4cc2ad5 (patch)
tree7ab9e93b274c5709a15edfd8b96832d4f6322833
parent08e6e6664218d20cf3dd1b00823720505fb08fe7 (diff)
fix chat heading not being aligned and using wrong styles
-rw-r--r--src/components/chat/chat.scss4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/chat/chat.scss b/src/components/chat/chat.scss
index 787514c8..4abd94a1 100644
--- a/src/components/chat/chat.scss
+++ b/src/components/chat/chat.scss
@@ -138,11 +138,15 @@
}
.chat-view-heading {
+ box-sizing: border-box;
position: static;
z-index: 9999;
top: 0;
margin-top: 0;
border-radius: 0;
+ background: linear-gradient(to top, var(--panel), var(--panel)),
+ linear-gradient(to top, var(--bg), var(--bg));
+ height: 50px;
}
.scrollable-message-list {