We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, it seem css variable not supported in most email client, and it should be replace by inliner before sent.
input
/* style.css */ .bg-gray-100{ --tw-bg-opacity:1; background-color:rgb(237 242 247/var(--tw-bg-opacity)); }
<!-- index.html --> <link href="style.css" rel="stylesheet" /> <div class="bg-gray-100"> Hello there </div>
output
<div class="bg-gray-100" style="--tw-bg-opacity: 1; background-color: rgb(237 242 247/var(--tw-bg-opacity));"> Hello there </div>
expected
<div style="--tw-bg-opacity: 1; background-color: rgb(237 242 247/1);"> Hello there </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, it seem css variable not supported in most email client, and it should be replace by inliner before sent.
input
output
expected
The text was updated successfully, but these errors were encountered: