mirror of https://github.com/sveltejs/svelte
parent
4583b17084
commit
7e1691cd62
@ -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…
Reference in new issue