You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But as pointed in some other issues (issue 6399, issue 7211), the above expression has the same problem in the below expression. (increasing invalidation complexity)
.b:has(:is(:host .a :scope) .c) { color: green }
So, it would be better to use below expression instead of the above.
:host .a .b:has(.c) { color: green }
How about disallowing :host, :host(), :host-context() inside :has() to avoid increasing complexity?