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
I have the following sass code. I believe this issue is related to: https://sass-lang.com/documentation/breaking-changes/strict-unary/
box-shadow: 0px (-1px) 12px #fff;
When I am compiling this sass file it's output is the following
box-shadow: 0-1px 12px #fff;
However when I use any other px value other than 0, for example:
box-shadow: 2px (-1px) 12px #fff;
compiles to the following expected value:
box-shadow: 2px -1px 12px #fff;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the following sass code. I believe this issue is related to: https://sass-lang.com/documentation/breaking-changes/strict-unary/
When I am compiling this sass file it's output is the following
However when I use any other px value other than 0, for example:
compiles to the following expected value:
The text was updated successfully, but these errors were encountered: