Closed
Description
When you have something like:
%btn-style-default{
background: green;
&:hover{
background: black;
}
}
and extend this selector with:
button{
@extend %btn-style-default;
}
should compile to:
button{
background: green;
}
button:hover{
backgroud: black
}
but instead it compiles to invalid (and obviously non-functional) css:
button {
background: green; }
%btn-style-default:hover {
background: black; }
Any news on this?