diff --git a/src/App.svelte b/src/App.svelte index a6380ef..d62190e 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -2,7 +2,7 @@ import SvgContent from "./components/SVGContent.svelte"; function setBackground(ev: CustomEvent) { - console.debug(`Setting background color to "${ev.detail}"`) + console.debug(`Setting background color to "${ev.detail}"`); document.body.style.background = ev.detail; } @@ -12,12 +12,18 @@