mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-27 05:01:23 +01:00
12 lines
182 B
SCSS
12 lines
182 B
SCSS
@if $use-fadeOut == true {
|
|
|
|
@include animate-keyframe(fadeOut) {
|
|
0% {opacity: 1;}
|
|
100% {opacity: 0;}
|
|
}
|
|
|
|
.fadeOut {
|
|
@include animate-prefixer(animation-name, fadeOut);
|
|
}
|
|
|
|
}
|