-
Notifications
You must be signed in to change notification settings - Fork 458
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
Issue with sass rules, like @import ecc.. #627
Comments
Anyone? |
Same question here. Plus, is there a way to indent those @import/@include etc? CSSComb is removing the indentation. |
I've the same issue. Anyone else help |
Changing the EOL sequence to LF seems to fix it for me. |
@dnwhte How do you have do It? I would to try your suggestion, and see by myself if It work |
Looks like a lot of bugs exist.. So i skip for now :X |
I suggest for all to use another tool for sort scss properties, csscomb is no longer maintained and it has some bugs. |
Hi everyone!
I have this scss
.magic-class {
display:block;
grid-template-columns: 1rem 1rem 1rem;
@include box(2rem);
@include transition();
@include box;
overflow:hidden;
touch-action: none;
}
And when I run css comb it will be like
.magic-class {
@include box(2rem);
@include transition();
@include box;
touch-action: none;
display: block;
overflow: hidden;
grid-template-columns: 1rem 1rem 1rem;
}
How can I prevent to add this extra lines after every @import rule?
Help me pls, thank you
The text was updated successfully, but these errors were encountered: