postcss-ng-tailwind-darkmode
v0.0.3
Published
PostCSS plugin to force work angular emulated encapsulation with tailwind darkmode based on class
Downloads
4
Maintainers
Readme
PostCSS Angular tailwind darkmode
[PostCSS] plugin to force work angular emulated encapsulation with tailwind darkmode based on class.
.dark .test {
color: red;
}
transforms to:
.dark .test, :host-context(.dark) .test {
color: red;
}