-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
<script>
import MyComponent from 'path/to/MyComponent.svelte';
</script>
<MyComponent class={$css('my-class')} />
<style>
/* Unused CSS selector ".my-class" */
.my-class {
...
&:hover {
...
}
}
</style>It works if you don't use css-nesting
<script>
import MyComponent from 'path/to/MyComponent.svelte';
</script>
<MyComponent class={$css('my-class')} />
<style>
/* No `Unused CSS selector` warning */
.my-class {
...
}
.my-class:hover {
...
}
</style>Metadata
Metadata
Assignees
Labels
No labels