scroll v1

This commit is contained in:
Andrew Gundersen 2021-03-14 13:21:38 -05:00
commit ce62603886
3 changed files with 13 additions and 36 deletions

View file

@ -161,6 +161,10 @@
.messageBox {
display: flex;
flex-direction: column;
// Animate on render.
animation-name: appear;
animation-duration: 0.25s;
}
#aiMessageBox {
@ -190,17 +194,13 @@
padding: 10px;
border-radius: 18px;
// Animate on render.
animation-name: appear;
animation-duration: 0.25s;
}
@keyframes appear {
from {
10% {
transform: scale(0.3);
}
to {
100% {
transform: scale(1);
}
}