-
Notifications
You must be signed in to change notification settings - Fork 213
Closed
Description
Following SCSS:
@mixin keyframes( $name )
{
@-webkit-keyframes $name {
@content;
}
}
@include keyframes( change-color )
{
0% { color: green; }
100% { color: red; }
}
..compiles into:
@-webkit-keyframes $name {
0% { color: green; }
100% { color: red; }
}
...while it should be compiled into:
@-webkit-keyframes change-color {
0% { color: green; }
100% { color: red; }
}
If replacing @-webkit-keyframes $name with @-webkit-keyframes #{$name} it compiles correctly though.
Any thoughts?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels