.container {
--random: 200px;
@mixin test() {
@if (var(--random) > 500px) {
color: orange;
}
}
@include test();
}
My objective is to apply the style color: orange;
to .container
if the variable exceeds 500px.
P.S. I was unsure about how to create a code snippet to demonstrate this issue. Do you have any suggestions for a website where I can generate small SASS snippets?