Answer the question
In order to leave comments, you need to log in
Why does @extend work but not @include?
.header-prev{
@include all-icons-sprites(arrow-left);
position: absolute;
bottom: -35px;
left: 0;
&:hover{
@include all-icons-sprites(arrow-left-h);
}
/* Here's how it works...*/
.header-prev{
@extend .icons-arrow-left;
position: absolute;
bottom: -35px;
left: 0;
&:hover{
@extend .icons-arrow-left-h;
}
}
Koala compiles both code without errors.
Answer the question
In order to leave comments, you need to log in
Most likely a problem with the mixin. It would be nice to see his source)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question