-
-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
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
scopeBehaviour: 'global' not remove :global() decl on rule #30
Comments
You have to place a space before |
tried place a space before |
Oh, I've got it. I think, it's not a good idea to use |
It's a lib that may export to other one to test with no local names. And at the same time may included in a JS component with local names, which want keep Is it possible to keep a single copy of the source CSS? Just by switch |
I can reproduce it. :global .page {
padding: 20px;
} produces this in .page {
padding: 20px;
} but this in :global .page {
padding: 20px;
} |
Having the same issue: i have a plugin that adds |
I was dealing with a similar issue. I noticed that the |
When using
scopeBehaviour: 'global'
for below css rule:The
:global
part is not removed, which result in invalid css selector.The text was updated successfully, but these errors were encountered: