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

This commit is contained in:
Gabe Kangas
2023-05-08 19:28:56 -07:00
parent 671e939eea
commit cfdfdf5f49

View File

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