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
Hello, love stylus-supremacy and really grateful for this project.
I found some weird interpolation issues when trying to add this as an autofixer for a large codebase.
$padding = 12 .class1 padding ($padding)%
gets formatted to:
$padding = 12; .class1 { padding: $padding %; }
which doesn't compile.
text-blue() color blue .class1 text-{'blue'}() transform ($padding)ms
turns into
text-blue() color blue .class1 text-{'blue'} transform $padding ms
and if you run it again, it turns into:
text-blue() color blue .class1 text- transform $padding ms
Thanks in advance for your time. Again, love this project
The text was updated successfully, but these errors were encountered:
#45
Sorry, something went wrong.
No branches or pull requests
Hello, love stylus-supremacy and really grateful for this project.
I found some weird interpolation issues when trying to add this as an autofixer for a large codebase.
gets formatted to:
which doesn't compile.
turns into
and if you run it again, it turns into:
Thanks in advance for your time. Again, love this project
The text was updated successfully, but these errors were encountered: