Messages slide-in animation
Just a little detail, make the messages slide-in once they load. Pretty much what this piece of code can do
-
@keyframes slide-up {
-
0% {
-
opacity: 0;
-
transform: translateX(20px);
-
}
-
100% {
-
opacity: 1;
-
transform: translateX(0);
-
}
-
}
-
.message-2qnXI6 {
-
animation: slide-up 0.4s ease;
-
}
0
Please sign in to leave a comment.
Comments
0 comments