Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dangling CSS combinators don't trigger any errors but produce an invalid stylesheet. #1751

Open
yamadapc opened this issue Dec 5, 2024 · 0 comments

Comments

@yamadapc
Copy link

yamadapc commented Dec 5, 2024

Describe the bug

Dangling CSS combinators don't trigger any errors but produce an invalid stylesheet.

To Reproduce

Write code with a dangling CSS combinator, for example:

const header = css({
     '>': {
        marginLeft: 10
     }
});

Expected behavior

A build error would be triggered or the style would be ignored.

Actual behavior

A stylesheet is produced with a dangling selector:

.hash > {
    margin-left: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant