mirror of https://github.com/sveltejs/svelte
parent
0128df33da
commit
6d2f1a48b4
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"svelte": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: allow comments after last selector in css
|
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
.foo.svelte-xyz, /* some comment */
|
||||||
|
.bar.svelte-xyz /* some other comment */
|
||||||
|
{
|
||||||
|
color: red;
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
<div class="foo">foo</div>
|
||||||
|
<div class="bar">bar</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.foo, /* some comment */
|
||||||
|
.bar /* some other comment */
|
||||||
|
{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in new issue