How do you do/can you do this in Stylus
.classA.classB {
color: red;
}
Note, I do mean .classA.classB not .classA .classB (they're different)
I thought this would do it
.classA
.classB
color red
But that does this (which makes sense I guess)
.classA .classB{color:#f00}
I realise I can do this
.classA.classB
color red
But that doesn't feel very "Stylus" and would become clumsy as/if you nested further
Thanks Jim