When working with Sass, I have the following code:
asdf{
&-b&-c {font-size: 16px;}
}
And I want the generated CSS to look like this:
asdf.asdf-b.asdf-c{
font-size: 16px;
}
Is it possible to achieve this in Sass without having to repeat the parent element multiple times?