Is there a reason why, but the :host style selector is removed when compiling this. Works in svelte 3.32.1, but not in 3.32.2.
<style>
:host {
display: inline-block;
}
.hello {
color: green
}
</style>
Result:
only the .hello class is available in the compiled web component.