grafana/public/sass/mixins/_animations.scss

26 lines
516 B
SCSS
Raw Normal View History

@mixin keyframes($animation-name) {
@-webkit-keyframes #{$animation-name} {
@content;
}
@-moz-keyframes #{$animation-name} {
@content;
2016-02-20 17:08:35 -06:00
}
@-ms-keyframes #{$animation-name} {
@content;
}
@-o-keyframes #{$animation-name} {
@content;
2016-02-20 17:08:35 -06:00
}
@keyframes #{$animation-name} {
@content;
}
}
@mixin animation($str) {
-webkit-animation: #{$str};
-moz-animation: #{$str};
-ms-animation: #{$str};
-o-animation: #{$str};
2016-02-20 17:08:35 -06:00
animation: #{$str};
}