14 lines
392 B
SCSS
Vendored
14 lines
392 B
SCSS
Vendored
@import "./node_modules/animate-sass/animate";
|
|
|
|
body {
|
|
-webkit-backface-visibility: hidden; // Addresses a small issue in webkit: http://bit.ly/NEdoDq
|
|
}
|
|
.animated {
|
|
@include animate-prefixer(animation-duration, $base-duration);
|
|
@include animate-prefixer(animation-fill-mode, both);
|
|
|
|
&.hinge {
|
|
@include animate-prefixer(animation-duration, $base-duration * 2);
|
|
}
|
|
}
|