Michael Mifsud
Michael Mifsud
Thanks for the report. I am able to confirm this issue. We don't currently account for `@` rules with more than one argument.
Thanks @chriseppstein
If I understand correctly this is referring to the CSS Color Module Level 4 (not 3) [`color` function](https://drafts.csswg.org/css-color-4/#color-function)? This spec appears to still be an editors draft which means it...
Try quoting the colour names when calling your function like color("blue", 1). On Thu, 22 Oct 2020, 3:37 pm theChosenOne, wrote: > So I'm using a map with two different...
>Would you not expect it to work without the quotes? No. This doesn't work because Sass has types. `blue` is of type `Color`, where `"blue"` is of type `String`. Doing...
Apologies for my naivety. Is the issue with calc() purely that it allows arithmetic on units that Sass considers erroneous, or is there more to it? On 14 Sep 2015...
This is a bug. When get a .sass file the first thing we do is convert it to .scss. LibSass doesn't handle .sass files directly. it looks like we're losing...
Do you mean the matching libsass source? On 20 Aug 2015 06:23, "David Thompson" [email protected] wrote: > Since libsass must be statically linked, it would be convenient if the >...
You're right, we should be less lazy about sassc.
I think what ever approach we take it's important to respect the existing conventions of the JavaScript tooling community. We should look at libraries like postcss, webpack, and parcel for...