summaryrefslogtreecommitdiff
path: root/_sass/common/classes/_animation.scss
blob: 2dbc47d6c78bb3b56db87d7f6087b28eec3b2d9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@mixin animation($value) {
  -webkit-animation: $value;
  animation: $value;
}

@mixin keyframes($name) {
  @-webkit-keyframes #{$name} {
    @content;
  }
  @keyframes #{$name} {
    @content;
  }
}