Scss compiler error: no mixin named transition

前端 未结 1 1129
情深已故
情深已故 2021-01-20 05:25

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

相关标签:
1条回答
  • 2021-01-20 06:17

    @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

    0 讨论(0)
提交回复
热议问题