Files
Roman Pyrih 5de35e358d first commit
2026-04-03 10:22:35 +02:00

13 lines
191 B
CSS

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