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