Search code examples
meteorsassbowermixins

Scss compiler error: no mixin named transition


I have a meteor app which uses bower components.

When I try to run the app I got an error: Scss compiler error: no mixin named transition

which comes from the line of: @include transition(.2s ease-out);

What could be cause of this problem?


Solution

  • @include expects a mixin. In this case it is expecting a mixin named 'transition' and I think you are trying to apply 'transition' as a css property.

    Check this page out: http://sass-lang.com/guide