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
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -17,8 +17,8 @@
align-items: center;
opacity: 0;
animation: show 250ms forwards ease-in-out 500ms;
font-size: 12px;
font-weight: 600;
font-size: 12px;
font-weight: 600;
}
}
@ -27,13 +27,14 @@
flex-direction: column;
background-color: var(--theme-color-components-chat-background);
height: 100%;
font-size: var(--chat-message-text-size);
font-size: var(--chat-message-text-size);
}
.virtuoso {
width: auto;
flex-grow: 1;
overflow-y: scroll;
overflow-x: hidden;
margin-bottom: 5px;
}
.virtuoso::-webkit-scrollbar {
@ -52,7 +53,8 @@
from {
opacity: 0;
transform: translateY(5px);
} to {
}
to {
opacity: 1;
transform: translateY(0px);
}