We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now something like:
// entrypoint.scss $background: mix(red, blue) @import "library"; // _library.scss $background: green !default;
would error, since the patch to add the color namespace and the patch to delete the configuration variable would conflict.
We should handle this case by removing the existing patches and instead applying them to the configuration, e.g:
@use "sass:color"; @use "library" with ($background: color.mix(red, blue));
The text was updated successfully, but these errors were encountered:
In the first example, is $background: green supposed to have a !default flag?
$background: green
!default
Sorry, something went wrong.
Yes. Fixed.
No branches or pull requests
Right now something like:
would error, since the patch to add the color namespace and the patch to delete the configuration variable would conflict.
We should handle this case by removing the existing patches and instead applying them to the configuration, e.g:
The text was updated successfully, but these errors were encountered: