mirror of https://github.com/sveltejs/svelte
parent
ae5aac3534
commit
4e0ea72f36
@ -0,0 +1,17 @@
|
||||
[
|
||||
{
|
||||
"code": "css-invalid-global-selector",
|
||||
"message": ":global(...) must contain a single selector",
|
||||
"start": {
|
||||
"line": 5,
|
||||
"column": 5,
|
||||
"character": 66
|
||||
},
|
||||
"end": {
|
||||
"line": 5,
|
||||
"column": 33,
|
||||
"character": 94
|
||||
},
|
||||
"pos": 66
|
||||
}
|
||||
]
|
||||
@ -0,0 +1,12 @@
|
||||
<style>
|
||||
div :global(.a\,bc\] ~ .d\,ef\)) {
|
||||
color: red;
|
||||
}
|
||||
div :global(.abc\] + .def\), h1) {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div>
|
||||
<h1>hello world</h1>
|
||||
</div>
|
||||
Loading…
Reference in new issue