mirror of https://github.com/sveltejs/svelte
commit
9aff8ea48f
@ -0,0 +1,3 @@
|
||||
export default {
|
||||
cascade: false
|
||||
};
|
@ -0,0 +1 @@
|
||||
.test[svelte-xyz]>div[svelte-xyz]{color:#0af}
|
@ -0,0 +1 @@
|
||||
<div svelte-xyz="" class="test"><div svelte-xyz="">Testing...</div></div>
|
@ -0,0 +1,11 @@
|
||||
<div class="test">
|
||||
<div>
|
||||
Testing...
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.test > div {
|
||||
color: #0af;
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue