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
Apparently having the following rule structure, causes the code folding to break.
ul { li { display: block; padding: .5em; a { color: red; } } h4 { color: red; } }
folded looks like:
+ul {...li { display: block; padding: .5em; a { color: red; } } h4 { color: red; } }
the only way to grant the code-folding will be correct is to split nested rules into different lines such as:
which properly folds to
+ul {...}
The text was updated successfully, but these errors were encountered:
Well to be honest, it should really be written as :
Sorry, something went wrong.
No branches or pull requests
Apparently having the following rule structure, causes the code folding to break.
folded looks like:
the only way to grant the code-folding will be correct is to split nested rules into different lines such as:
which properly folds to
The text was updated successfully, but these errors were encountered: