Files
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

15 lines
197 B
CSS

@keyframes slideInUp {
0% {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}