yannstatic/_sass/common/classes/_animation.scss

14 lines
200 B
SCSS
Raw Normal View History

2024-10-31 20:18:37 +01:00
@mixin animation($value) {
-webkit-animation: $value;
animation: $value;
}
@mixin keyframes($name) {
@-webkit-keyframes #{$name} {
@content;
}
@keyframes #{$name} {
@content;
}
}