diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-12 14:31:39 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-12 14:31:39 +0300 |
commit | c5affebc6f977d3414d875e4bc87ad8418b76168 (patch) | |
tree | c2736e92cf8cb9143a80a84ff7dc379e46328f2e /src/layouts | |
parent | dc6c24e56a1c14876cf3a0b3184575458d686b6f (diff) | |
download | popov.link-c5affebc6f977d3414d875e4bc87ad8418b76168.tar.xz popov.link-c5affebc6f977d3414d875e4bc87ad8418b76168.zip |
Added global styles
Diffstat (limited to 'src/layouts')
-rw-r--r-- | src/layouts/BaseLayout.astro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 29a7408..af0d20e 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -1,6 +1,7 @@ --- import Head from "../components/Head.astro"; import Header from "../components/Header.astro"; +import "../scss/global.scss"; const { title, description } = Astro.props; --- |