Describe the bug
Given a component like this
<style>
	:global {
		a, b {
			color: red;
		}
	}
</style> 
the generated css looks like this
	/* :global {*/
		/* (unused) a, b*/ {
			color: red;
		}
	/*}*/ 
which is wrong because there's a block without a selector.
Reproduction
REPL
Logs
System Info
Severity
annoyance