How to target a component in svelte with css?
You need to pass props to the parent component with export let, then tie those props to class or style in the child component. You can either put a style tag on the element in the child you want to style dynamically and use a variable you export for the parent to determine the value … Read more