-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Closed
Labels
Description
Describe the problem
You can do this:
<style>
.foo {
font-size: 2em;
}
.foo :global {
p {
color: purple;
}
}
</style>It would be nice if you could do this:
<style>
.foo {
font-size: 2em;
:global {
p {
color: purple;
}
}
}
</style>Right now it fails cryptically.
Describe the proposed solution
see above
Importance
nice to have
gterras, brunnerh, mskocik, Im-Beast, jamesst20 and 5 more