Browse Source

fix(chat): add slight spacing via margin below bottom chat message

pull/3007/head
Gabe Kangas 2 years ago
parent
commit
cfdfdf5f49
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 4
      web/components/chat/ChatContainer/ChatContainer.module.scss

4
web/components/chat/ChatContainer/ChatContainer.module.scss

@ -34,6 +34,7 @@ @@ -34,6 +34,7 @@
flex-grow: 1;
overflow-y: scroll;
overflow-x: hidden;
margin-bottom: 5px;
}
.virtuoso::-webkit-scrollbar {
@ -52,7 +53,8 @@ @@ -52,7 +53,8 @@
from {
opacity: 0;
transform: translateY(5px);
} to {
}
to {
opacity: 1;
transform: translateY(0px);
}

Loading…
Cancel
Save