I have a SCSS file, and I want to @include transition(all, 0.5s);
But scss gives
Error message:
Scss compiler Error: no mixin named transition
Here is my SCSS
:
a {
float: left;
line-height: 70px;
text-decoration: none;
color: white;
@include transition(all, 0.3s);
&:hover {
background-color: #444;
@include transition(all, .5s);
}
}