mirror of https://github.com/sveltejs/svelte
parent
3895a89c3b
commit
234db33eb4
@ -0,0 +1 @@
|
||||
.foo\:bar.svelte-xyz{color:red}
|
@ -0,0 +1 @@
|
||||
<div class="svelte-xyz foo:bar">Hello world</div>
|
@ -0,0 +1,11 @@
|
||||
<script>
|
||||
const enabled = true;
|
||||
</script>
|
||||
|
||||
<div class:foo:bar={enabled}>Hello world</div>
|
||||
|
||||
<style>
|
||||
.foo\:bar {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue