global.css
.fade-in-right {
animation: fade-in-right 0.6s ease-in-out both;
}
@keyframes fade-in-right {
0% {
opacity: 0;
transform: translateX(-20px);
}
100% {
opacity: 1;
transform: translateX(0);
}
} Based on @Ibelick
Designed with ♥ by @AdrianGerman