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/global/input.svelte

16 lines
179 B

<div>red</div>
<div class='foo'>bold/blue</div>
<style>
:global(div) {
color: red;
}
:global(div).foo {
color: blue;
}
:global(.foo) {
font-weight: bold;
}
</style>