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
When I have for example:
div { margin: 20px; padding: 10px; transition: 1s all; }
it gets correctly prefixed to:
div { margin: 20px; padding: 10px; -webkit-transition: 1s all; -moz-transition: 1s all; -o-transition: 1s all; -ms-transition: 1s all; transition: 1s all; }
Now I change the last row from "transition: 1s all;" to "transition: 5s all;" and hit the prefix commando again. The result is:
div { -webkit-transition: 5s all; -moz-transition: 5s all; -o-transition: 5s all; -ms-transition: 5s all; transition: 5s all; }
It killed the margin and the padding statements. I tried a few other tests and every time the statements before the prefixed ones get killed.
Hope you can fix this soon.
The text was updated successfully, but these errors were encountered:
I have discovered this ugly behaviour too! :-(
Sorry, something went wrong.
No branches or pull requests
When I have for example:
it gets correctly prefixed to:
Now I change the last row from "transition: 1s all;" to "transition: 5s all;" and hit the prefix commando again.
The result is:
It killed the margin and the padding statements.
I tried a few other tests and every time the statements before the prefixed ones get killed.
Hope you can fix this soon.
The text was updated successfully, but these errors were encountered: