chore: add css regression test (#11658)

closes #9207
pull/11659/head
Simon H 1 year ago committed by GitHub
parent c2f75dc7ba
commit ade6b6e480
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,3 @@
.foo.svelte-xyz[data-state='checked'] {
background-color: red;
}

@ -0,0 +1,7 @@
<!-- an action or sth else could dynamically set the data-state -->
<div class="foo"></div>
<style>
.foo:global([data-state='checked']) {
background-color: red;
}
</style>
Loading…
Cancel
Save