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
@import 'nib' div border-radius 5px span border-radius inherit
compiles into:
div { -webkit-border-radius: 5px; border-radius: 5px; }
instead of:
div { -webkit-border-radius: 5px; border-radius: 5px; } div span { -webkit-border-radius: inherit; border-radius: inherit; }
The text was updated successfully, but these errors were encountered:
Nice catch! Wanna take a stab at a PR for fixing it?
Sorry, something went wrong.
I encountered this issue in my own stylesheets and was very surprised. Anything that a stylesheet processor doesn’t understand, it should leave alone.
Here’s the workaround I’m using, in case it helps others:
border-radius: '%s' % inherit
Got same issue. Spent an hours investigating it. What's a reason for removing this property?
No branches or pull requests
compiles into:
instead of:
The text was updated successfully, but these errors were encountered: