yannstatic/_sass/animate/_fade-in-down.scss

11 lines
175 B
SCSS
Raw Normal View History

2024-10-31 20:18:37 +01:00
@include keyframes(fade-in-down) {
from {
opacity: 0;
@include transform(translateY(-2rem));
}
to {
opacity: 1;
@include transform(translateY(0));
}
}