hmps / animate.scss

Animate.scss
62 stars 11 forks source link

Outputs "@at-root" #2

Closed pmeissner closed 10 years ago

pmeissner commented 10 years ago

Unfortunately "@at-root" is included in my output:

    -webkit-animation: bounce 1s ease 0.2s 1 both;
    -moz-animation: bounce 1s ease 0.2s 1 both;
    animation: bounce 1s ease 0.2s 1 both;
    -webkit-animation-backface-visibility: hidden;
    -moz-animation-backface-visibility: hidden;
    -ms-animation-backface-visibility: hidden;
    -o-animation-backface-visibility: hidden;
    animation-backface-visibility: hidden;
    @at-root {
      @-webkit-keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          -webkit-transform: translateY(0px); }

        40% {
          -webkit-transform: translateY(-30px); }

        60% {
          -webkit-transform: translateY(-15px); } }

      @-moz-keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          -moz-transform: translateY(0px); }

        40% {
          -moz-transform: translateY(-30px); }

        60% {
          -moz-transform: translateY(-15px); } }

      @-o-keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          -o-transform: translateY(0px); }

        40% {
          -o-transform: translateY(-30px); }

        60% {
          -o-transform: translateY(-15px); } }

      @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
          -webkit-transform: translateY(0px);
          transform: translateY(0px); }

        40% {
          -webkit-transform: translateY(-30px);
          transform: translateY(-30px); }

        60% {
          -webkit-transform: translateY(-15px);
          transform: translateY(-15px); } }
 }
pmeissner commented 10 years ago

Never mind… I discovered that my compiler was using libsass and not sass 3.3.0.rc.1