Skip to content

Importing from the bottom of a scss file compiles the content on the top #7

@crysiss

Description

@crysiss

Importing puts the imported content before the content of the caller, not at the exact place of the @import line.

Example:

in style.scss I have

body {
...
}

@import "custom.scss";

in custom.scss I have

p {
...
}

This all gets compiled as

p {
...
}

body {
... 
}

instead of

body {
...
}

p {
...
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions