I have a variable:
@test: this_is_var;
And I have class
.my-@{test}-class{}
How to print this class in another class?
This code is wrong:
.test-class{
.my-@{test}-class();
}
But this code is work fine
.test-class{
.my-this_is_var-class();
}
Why? And how to print this class: .my-@{test}-class()
?