mirror of https://github.com/sveltejs/svelte
Merge pull request #3812 from tanhauhau/tanhauhau/remove-empty-value-declaration
remove empty value declaration from style treepull/3817/head
commit
b6f4c23161
@ -0,0 +1 @@
|
|||||||
|
.bar.svelte-xyz{color:blue}
|
@ -0,0 +1,11 @@
|
|||||||
|
<div class='foo bar'></div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.foo {
|
||||||
|
color:;
|
||||||
|
}
|
||||||
|
.bar {
|
||||||
|
font:;
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in new issue