Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vltansky/postcss-ng-tailwind-darkmode
https://github.com/vltansky/postcss-ng-tailwind-darkmode
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vltansky/postcss-ng-tailwind-darkmode
- Owner: vltansky
- Created: 2021-01-24T11:30:03.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-24T12:28:06.000Z (about 4 years ago)
- Last Synced: 2024-11-16T07:00:19.347Z (3 months ago)
- Language: JavaScript
- Size: 59.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PostCSS Angular tailwind darkmode
[PostCSS] plugin to force work angular emulated encapsulation with tailwind darkmode based on class.
```css
.dark .test {
color: red;
}
```
transforms to:
```css
.dark .test, :host-context(.dark) .test {
color: red;
}
```