Skip to content

Commit

Permalink
Merge pull request #535 from complementstudio/bug-mixin-keyframes-fix
Browse files Browse the repository at this point in the history
Mixin keyframe fix
  • Loading branch information
Dogfalo committed Feb 2, 2015
2 parents 3b56d78 + 622c065 commit 2fd0a33
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions sass/components/_prefixer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@

// Keyframes
@mixin keyframes($animation-name) {
@-webkit-keyframes $animation-name {
@-webkit-keyframes #{$animation-name} {
@content;
}
@-moz-keyframes $animation-name {
@-moz-keyframes #{$animation-name} {
@content;
}
@keyframes $animation-name {
@keyframes #{$animation-name} {
@content;
}
}
Expand Down Expand Up @@ -414,4 +414,3 @@
-ms-transition-timing-function: $function;
transition-timing-function: $function;
}

0 comments on commit 2fd0a33

Please sign in to comment.