-
Notifications
You must be signed in to change notification settings - Fork 65
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
fix: Ignore invalid CSS that affects the CSS of subsequent blocks #3199
Conversation
🤖 Pull request artifacts
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the return ''
here stops the css from working (because it stops prepending the necessary CSS selector). I think the better way to fix this is to still continue prepending the necessary CSS selector even if a nested selector is used.
CSS selector nesting is now allowed in the CSS standard, so we should allow it also.
@andeng1106 we need to check if media queries (and shortcut media queries |
Issue is now fixed. I just have one query:
@bfintal media queries are still working but shortcut media queries ( Screen.Recording.2024-06-20.at.11.mp4 |
fixes #3164
notes