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
Seeing an issue where the code causes duplicate properties if the fallback already exists.
Given this code:
selector { overflow: visible; overflow: initial; width: auto; width: initial; }
Processing generates this:
selector { overflow: visible; overflow: visible; overflow: initial; width: auto; width: auto; width: initial; }
This causes issues where the file is processed via a Grunt watch script or similar, as it can lead to hundreds of duplicate properties.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Seeing an issue where the code causes duplicate properties if the fallback already exists.
Given this code:
Processing generates this:
This causes issues where the file is processed via a Grunt watch script or similar, as it can lead to hundreds of duplicate properties.
The text was updated successfully, but these errors were encountered: