Scss compiler error: no mixin named transition

23,036

@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

Share:
23,036
R-J
Author by

R-J

I'm a Full Stack Web Developer and Software Engineer with 10 years experience in Web Development. Learning to code since 2007

Updated on July 09, 2022

Comments

  • R-J
    R-J almost 2 years

    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?

  • R-J
    R-J about 8 years
    I had commented out @mixin transition($args:200ms) { -webkit-transition: $args; -moz-transition: $args; -o-transition: $args; -ms-transition: $args; transition: $args; } Thats what you get working on project created by others. :D