mirror of https://github.com/sveltejs/svelte
18 lines
165 B
18 lines
165 B
3 years ago
|
<div>hello</div>
|
||
|
|
||
|
<style>
|
||
|
@layer base, special;
|
||
|
|
||
|
@layer special {
|
||
|
div {
|
||
|
color: rebeccapurple;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@layer base {
|
||
|
div {
|
||
|
color: green;
|
||
|
}
|
||
|
}
|
||
|
</style>
|