How do I conditionally apply a mixin if --my-custom-var is present? For example:
.test {
@if var(--my-custom-var) {
@include someExampleMixin()
}
@if var(--another-custom-var) {
@include someExampleMixin()
}
}
I don't care what the value of the --my-custom-var is but just want to check its existence.