I have a class that "extends" a class. I want it to also automatically extend "related pseudo-classes". What I mean by that:
Original class is
.original {
property1: foo;
&: before {
property2: bar;
}
}
New class is
.inheriting {
.original;
}
I now want to .inheriting: before
to have the same properties as .original: before
. How do I do that in an easy way?