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
Bug
<style> #view { grid-area: view; display: flex; flex-flow: column nowrap; } #view :first-child { margin-top: 0; } </style>
Produces a warning and doesn't compile the second rule
WARNING in ./src/comp/View.svelte Module Warning (from ./node_modules/svelte-loader/index.js): Unused CSS selector (48:0) 46: } 47: 48: #view :first-child { ^ 49: margin-top: 0; 50: } @ ./src/App.svelte 25:0-37 51:18-22 @ ./src/main.js @ multi ./src/main.js
Replacing " " with ">" (which is even better) solves the warning but leads to the wrong CSS output
#view.svelte-16764tj { grid-area:view; display:flex; flex-flow:column nowrap } #view>.svelte-16764tj:first-child { margin-top:0 }
.svelte-16764tj is supposed to go before ">" not after
.svelte-16764tj
The text was updated successfully, but these errors were encountered:
I think there is a space between #viex :first-childit should be #viex:first-child
#viex :first-child
#viex:first-child
Sorry, something went wrong.
No branches or pull requests
Bug
Produces a warning and doesn't compile the second rule
Replacing " " with ">" (which is even better) solves the warning but leads to the wrong CSS output
.svelte-16764tj
is supposed to go before ">" not afterThe text was updated successfully, but these errors were encountered: