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
Here
In this code:
.some-module { @height: 200px; @width: 200px; text-align: left; line-height: @height; // 200px & { // Override original values @height: 100px; @width: auto; .some-module__element { height: @height; // 100px width: @width; // 200px --- not 200px, but "auto". } // ... } // ... }
There is a problem with the annotation, width of ".some-module__element" is "auto", which overrides original value “200px".
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here
In this code:
There is a problem with the annotation, width of ".some-module__element" is "auto", which overrides original value “200px".
The text was updated successfully, but these errors were encountered: