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
At the moment stylis.js does not support media query resolution vendor prefixing.
stylis.js
This input
@media (min-resolution: 1dppx) { background-color: red; }
Should generate:
@media (-webkit-min-device-pixel-ratio: 1), (min-resolution: 1dppx) { background-color: red; }
What's the possibility to support this? Safari browsers requires it.
The text was updated successfully, but these errors were encountered:
I think this is doable - and probably a good thing to include. WDYT @thysultan ?
Sorry, something went wrong.
No branches or pull requests
Description
At the moment
stylis.js
does not support media query resolution vendor prefixing.Example
This input
Should generate:
What's the possibility to support this? Safari browsers requires it.
The text was updated successfully, but these errors were encountered: