I have this very simple example as you can see:
.large{
color: blue;
}
.a(@va){
.large;
~".@{va}()";
}
a{
.a(large)
}
I keep trying to get the .large()
or .large;
to work by calling the .large
mixin. I keep getting error:
Parse error: Unrecognised input
.large; ~".@{va}()";}
How can I fix this?