Nathanael Troyer
Nathanael Troyer

Reputation: 439

Styling special svelte elements

I know this seems basic, but I have a svelte:component I'd like to be able to style, but can't find anything in the Svelte documentation that tells me how to do it.

Upvotes: 1

Views: 82

Answers (1)

rixo
rixo

Reputation: 25001

<svelte:component /> is kind of a virtual element, it won't have a corresponding element in the finally rendered DOM. So you can't style it.

Upvotes: 2

Related Questions