From 75de69e1be68ef30fc0afc4dd15f3ba2710dabe2 Mon Sep 17 00:00:00 2001 From: Tobias Berger Date: Tue, 28 Sep 2021 12:29:38 +0200 Subject: [PATCH] @use themes in global stylesheet --- src/main.ts | 1 - src/styles/global.scss | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 222f62f..e6b5480 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,4 +1,3 @@ -import "./styles/themes.scss"; import "./styles/global.scss"; import App from "./App.svelte"; diff --git a/src/styles/global.scss b/src/styles/global.scss index 7749959..b195a2b 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -1,3 +1,5 @@ +@use "./themes.scss"; + html { height: calc(100vh - 2em - 3em); }