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
hey guys - awesome project.
I noticed an issue with the generated CSS for the background property.
example, for XPro2, the generated CSS for the background is:
background: -webkit-radial-gradient(50% 50%, circle closest-corner, rgba(224, 231, 230, 1) 40, rgba(43, 42, 161, 0.6)); background: radial-gradient(50% 50%, circle closest-corner, rgba(224, 231, 230, 1) 40, rgba(43, 42, 161, 0.6));
It should be:
background: -webkit-radial-gradient(50% 50%, circle closest-corner, rgba(224, 231, 230, 1) 40%, rgba(43, 42, 161, 0.6)); background: radial-gradient(50% 50%, circle closest-corner, rgba(224, 231, 230, 1) 40%, rgba(43, 42, 161, 0.6));
The % was missing after the 40, which results in invalid css
The text was updated successfully, but these errors were encountered:
Thank you for sharing. I opened PR #15 for the issue!
Sorry, something went wrong.
No branches or pull requests
hey guys - awesome project.
I noticed an issue with the generated CSS for the background property.
example, for XPro2, the generated CSS for the background is:
It should be:
The % was missing after the 40, which results in invalid css
The text was updated successfully, but these errors were encountered: