Skip to content

Support for child combinator #7

@bangseongbeom

Description

@bangseongbeom

Current version supports only Descendant combinator(.sel1 .sel2).
Child combinator(.sel1 > .sel2) should be also supported.

Input:

.a {
    --color: red;
}

.a > .b {
    color: var(--color);
}

Output:

.a > .b {
    color: undefined;
}

Expectation:

.a > .b {
    color: red;
}

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions