mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-27 21:21:22 +01:00
13 lines
178 B
SCSS
13 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);
|
||
|
}
|
||
|
|
||
|
}
|