I have css code like this:
--min: 250px;
width: min( var(--min), 100%);
Sass breaks with error:
Error: "var(--card-min)" is not a number for `min'
I think its trying to use some function called min and not css min. How can i tell it to not do this or ignore sass for this line?
I have css code like this:
--min: 250px;
width: min( var(--min), 100%);
Sass breaks with error:
Error: "var(--card-min)" is not a number for `min'
I think its trying to use some function called min and not css min. How can i tell it to not do this or ignore sass for this line?