diff --git a/bun.lockb b/bun.lockb index bbfc1ba..2c8ec1b 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 45c5d67..137d263 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,8 @@ { "type": "module", + "dependencies": { + "modern-normalize": "^2.0.0" + }, "devDependencies": { "@bauke/eslint-config": "^0.1.5", "@bauke/prettier-config": "^0.1.5", diff --git a/source/layouts/base.astro b/source/layouts/base.astro index 59989b5..f3cae41 100644 --- a/source/layouts/base.astro +++ b/source/layouts/base.astro @@ -1,5 +1,6 @@ --- -import "./base.scss"; +import "modern-normalize/modern-normalize.css"; +import "../scss/base.scss"; /** Properties for the base layout. */ export interface Props { diff --git a/source/layouts/base.scss b/source/scss/base.scss similarity index 100% rename from source/layouts/base.scss rename to source/scss/base.scss