rokobuljan / sveltekit-scss

sveltekit-scss

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SvelteKit SCSS

A minimal sample project that uses the basic configuration to use SCSS and load SCSS variables into Svelte template components like:

<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>

<style lang="scss">

    @import "../scss/variables";

    h1 {
        color: $color-1;
    }
</style>

About

sveltekit-scss


Languages

Language:JavaScript 51.2%Language:HTML 20.9%Language:Svelte 17.6%Language:SCSS 10.3%