Skip to content

Transitive inlines don't work between files #10

Description

@SebastianNechita

Minimal example:

/* foo.css */

.a {
    color: red;
}

.b {
    @inline .a;
}

/* bar.css */

.c {
    @inline .b from './foo.css';
    font-size: 14px;
}

When .b is imported, it is imported together with the @inline. So .c looks something like

.c {
    @inline .a;
    font-size: 14px;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions