I have a set of css tags like this:
.card.hidden.small.u-margin-bottom-1
I'd like to conditionally show the .hidden
tag while maintaining this style of syntax (I have seen this slim dynamic conditional class and don't want to change style).
Could I do something like?
.card(.hidden if true_statement).small.u-margin-bottom-1
but this doesn't seem to work.