Skip to content

Issue with sass rules, like @import ecc.. #627

Open
@ghost

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions