You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/scss/Animations.scss

14 lines
212 B

@keyframes fadein {
to { opacity: 1; }
}
.fade-in {
opacity: 0;
animation: fadein 1s forwards;
}
.fade-in.fast {
animation-duration: 0.5s;
}
.fade-in.very-fast {
animation-duration: 0.2s;
}