Css variables won't parsed
Open
- Dominant language
- JavaScript
- Stars
- 438
- Forks
- 77
- PR merge metrics
- No merged PRs in 30d
Description
Hello, it seem css variable not supported in most email client, and it should be replace by inliner before sent.
input
```css
/* style.css */
.bg-gray-100{
--tw-bg-opacity:1;
background-color:rgb(237 242 247/var(--tw-bg-opacity));
}
```
```html
Hello there
```
output
```html
Hello there
```
expected
```html
Hello there
```
Contributor guide
Assessment
This issue has not been assessed yet.