From 525af0db425314f682b510e0eacaba92dc0cca91 Mon Sep 17 00:00:00 2001 From: cuptain Date: Fri, 1 Nov 2024 10:38:55 +1100 Subject: [PATCH] background color --- fclauncher/frontend/src/App.svelte | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/fclauncher/frontend/src/App.svelte b/fclauncher/frontend/src/App.svelte index 1ad7250..6e845df 100644 --- a/fclauncher/frontend/src/App.svelte +++ b/fclauncher/frontend/src/App.svelte @@ -24,11 +24,11 @@ {#if $loading} -
+
{:else} -
+
{/if} @@ -42,6 +42,7 @@ --text-secondary: #ececec; --bg-primary: #23232e; --bg-secondary: #141418; + background-color: var(--bg-secondary); } #logo { @@ -60,10 +61,14 @@ display: flex; flex-direction: column; margin-left: 5rem; + } main{ - + background-color: var(--bg-secondary); + } + .central{ + background-color: var(--bg-secondary); }