pull/7514/head
Lewis 4 years ago
parent 0580c2d90d
commit c8741b00b5

@ -0,0 +1 @@
@layer base, special;@layer special{div.svelte-xyz{color:rebeccapurple}}@layer base{div.svelte-xyz{color:green}}

@ -0,0 +1,17 @@
<div>hello</div>
<style>
@layer base, special;
@layer special {
div {
color: rebeccapurple;
}
}
@layer base {
div {
color: green;
}
}
</style>
Loading…
Cancel
Save