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
when using css modules, the deep selector '>>>' does not work at all, when using css scoped it works fine, would be great if css modules has this feature
What does the proposed API look like?
<style lang="postcss" module>
.container >>> .children {
color: red;
}
</style>
// should be parsed to
<style type="text/css">
.container_Xz11 .children{
color: red
}
</style>
alukos, gierschv, sanemat, jsmnbom, mdmullins and 4 more