-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
Generates faulty :not formatting #561
Comments
SCSS? |
.LESS, actually. Although this should be perfectly readable on CSS standard. |
Just ran into this too. +1 for a fix. |
@rebelliard, @noducks, This appears to be fixed. On http://jsbeautifier.org/ this remains unchanged: <style>
.form-group:not(:last-child)
</style> Can you verify? |
Maybe #557 the actually issue? |
Yes. It is fixed now. Thanks. |
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The beautifier adds some spaces between
not
directives that break the styles:.form-group:not(:last-child)
becomes.form-group: not(: last-child)
The text was updated successfully, but these errors were encountered: