DEV Community

Discussion on: Building the Same App 5 Times

Collapse
 
murunwas profile image
murunwas

Nice tutorial, svelte style is scoped per component, if you want to make it global, you can use

<style/>
:global(elementName){
/*Your style goes here*/
}
<style/>
Enter fullscreen mode Exit fullscreen mode

e.g

<style/>
:global(body){
 position: relative;
}
<style/>
Enter fullscreen mode Exit fullscreen mode

Or create a style.css and link it on index.html above the bundle.css