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
After combing, unknown -webkit selectors are being removed, with no visible way of changing this behavior
for instance
#editor { flex-grow : 1; order : 2; color: #ffffff; background: #00152d; -webkit-user-select: none; -webkit-app-region: drag; }
becomes
#editor { flex-grow : 1; order : 2; color: #ffffff; background: #00152d; }
The text was updated successfully, but these errors were encountered:
Same for other "unknown" properties. Like a
html {scroll-behavior: smooth;} h1::first-letter, h2::first-letter, h3::first-letter, h4::first-letter { color: #f72377; }
html {} h1::first-letter, h2::first-letter, h3::first-letter, h4::first-letter { color : #f72377; }
Last commits on Oct 26, 2017, seems there is no way to resolve problem by author.
Sorry, something went wrong.
No branches or pull requests
After combing, unknown -webkit selectors are being removed, with no visible way of changing this behavior
for instance
becomes
The text was updated successfully, but these errors were encountered: