You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/css/samples/omit-scoping-attribute-glob.../input.svelte

17 lines
245 B

<script>
export let unknown1 = 'root';
export let unknown2 = 'whatever';
</script>
<style>
:global(html) :global(body) .root p {
color: red;
}
</style>
<div class={unknown1}>
<section class={unknown2}>
<p>hello</p>
</section>
</div>