datamad2017/_sass/vendor/animations/fade-exit/_fadeOut.scss

13 lines
182 B
SCSS
Raw Normal View History

@if $use-fadeOut == true {
@include animate-keyframe(fadeOut) {
0% {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
@include animate-prefixer(animation-name, fadeOut);
}
}