We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@layer
This works fine:
<style> @layer elements, page; </style>
This doesn’t work:
<style> @layer elements { :host { /* some styles */ } } </style>
I get this error message: undefined:4:9: missing '}'
undefined:4:9: missing '}'
If I change the selector inside of the @layer to be something else (like an element):
<style> @layer elements { label { /* some styles */ } } </style>
I get this error message: undefined:4:14: property missing ':'
undefined:4:14: property missing ':'
The text was updated successfully, but these errors were encountered:
Looks like this issue can probably be traced back to this issue in css: reworkcss/css#165
css
Sorry, something went wrong.
@knowler Thanks for reporting the bug. Like @ryanblock mentioned this is caused by the css parser we use. We are discussing how best to fix it.
kristoferjoseph
ryanbethel
No branches or pull requests
This works fine:
This doesn’t work:
I get this error message:
undefined:4:9: missing '}'
If I change the selector inside of the
@layer
to be something else (like an element):I get this error message:
undefined:4:14: property missing ':'
The text was updated successfully, but these errors were encountered: