From e1160b3462c281f3147c4ab9610064364f829c97 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 7 Mar 2025 22:18:07 +0000 Subject: [PATCH] #23 Updated the colour of the rotating loading button --- src/lib/components/Loading.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/components/Loading.svelte b/src/lib/components/Loading.svelte index c636846..95d0720 100644 --- a/src/lib/components/Loading.svelte +++ b/src/lib/components/Loading.svelte @@ -21,21 +21,21 @@ left: 0%; top: 0%; animation: rotate-one 1s linear infinite; - border-bottom: 3px solid #efeffa; + border-bottom: 3px solid var(--fg); } .inner.two { right: 0%; top: 0%; animation: rotate-two 1s linear infinite; - border-right: 3px solid #efeffa; + border-right: 3px solid var(--fg); } .inner.three { right: 0%; bottom: 0%; animation: rotate-three 1s linear infinite; - border-top: 3px solid #efeffa; + border-top: 3px solid var(--fg); } @keyframes rotate-one {