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'm on v1.62.0 (latest), and the following:
.foo { &:has(+ &) { display: none; } }
Is being compiled to this:
.foo:has(.foo) { display: none; }
While instead it should be compiled to this:
.foo:has(+ .foo) { display: none; }
Basically the + inside the :has disappeared.
+
:has
The text was updated successfully, but these errors were encountered:
This is working correctly in v1.53, but broken in v1.54, so that should narrow down the search. It looks like it has been broken for a while.
Sorry, something went wrong.
Add specs for :has(+ &)
f792b6f
See sass/dart-sass#1937
Fix :has(+ &)
cc0b2f4
Closes #1937
Fix :has(+ &) (#1938)
3091de5
Add specs for :has(+ &) (#1900)
50bfcfa
nex3
Successfully merging a pull request may close this issue.
I'm on v1.62.0 (latest), and the following:
Is being compiled to this:
While instead it should be compiled to this:
Basically the
+
inside the:has
disappeared.The text was updated successfully, but these errors were encountered: