Open

Description
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
Metadata
Metadata
Assignees
Labels
No labels