From 28418b987aebbe125262f6be7661580b7bcdb3ce Mon Sep 17 00:00:00 2001 From: Kevin F Date: Thu, 19 Sep 2024 14:15:57 +0200 Subject: [PATCH] fix navbar github dark mode icon --- src/components/Navbar.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 45a31bd..624ef8e 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -90,7 +90,7 @@ html[data-theme="light"] #github-logo { } /* Dark mode: Show dark-mode.svg */ -html[data-theme="black"] #github-logo { +html[data-theme="dark"] #github-logo { content: url('/arc-website/github-mark-white.svg'); } \ No newline at end of file