Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
libsass wants these interpolated
Browse files Browse the repository at this point in the history
  • Loading branch information
sndrs committed May 14, 2015
1 parent 07d6c7d commit 1191ee1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _css3.scss
Original file line number Diff line number Diff line change
Expand Up @@ -211,13 +211,13 @@
* @group css3
*/
@mixin keyframes($name) {
@-webkit-keyframes $name {
@-webkit-keyframes #{$name} {
@content;
}
@-moz-keyframes $name {
@-moz-keyframes #{$name} {
@content;
}
@keyframes $name {
@keyframes #{$name} {
@content;
}
}
Expand Down

0 comments on commit 1191ee1

Please sign in to comment.