For example:
.icon-pinterest{
color:#CC2027;
background: #fff;
&:hover{
color:#CC2027;
background: #fff;
}
}
This will generate:
.icon-pinterest {
color: #cc2027;
background: #fff;
}
.icon-pinterest:hover {
color: #cc2027;
background: #fff;
}
But I want it as the following:
.icon-pinterest,
.icon-pinterest:hover {
color: #cc2027;
background: #fff;
}
I think maybe I can use the extend expression?