fix(examples): add missing scss attribute to svite example

This commit is contained in:
Eric Liu 2020-09-13 14:25:35 -07:00
commit fee5cd2833
2 changed files with 2 additions and 2 deletions

View file

@ -91,7 +91,7 @@ const svelteOptions = {
```html
<!-- App.svelte -->
<style global>
<style lang="scss" global>
/** Gray 10 theme **/
@import "carbon-components-svelte/css/g10";
</style>

View file

@ -13,7 +13,7 @@
let theme = "g10";
</script>
<style global>
<style lang="scss" global>
@import "carbon-components-svelte/css/all";
</style>