gabrielecirulli / 2048

The source code for 2048

Home Page:https://play2048.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BUG mixin keyframes at helpers.scss

pedromarquesm opened this issue · comments

Don't forget the #{$string }

Original code just had $animation-name, what caused the scss file to convert it as a name and not a variable, having no animations working on the app

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