From 0f0afeae8df4362017bfb633eb3549e9fb646ab9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Wed, 7 Dec 2022 15:17:04 +0100 Subject: [PATCH] fix: background doesn't default to black --- src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.svelte b/src/App.svelte index b3f1326..a6380ef 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -2,6 +2,7 @@ import SvgContent from "./components/SVGContent.svelte"; function setBackground(ev: CustomEvent) { + console.debug(`Setting background color to "${ev.detail}"`) document.body.style.background = ev.detail; } @@ -15,7 +16,6 @@ html, body { overflow: hidden; - background: black; } html,