Merge pull request #323 from Klotske/fix-color-toggle

#320 - fixed color toggle being missing on light mode
This commit is contained in:
Yannic Kilcher
2023-01-03 11:54:54 +01:00
committed by GitHub
@@ -14,7 +14,7 @@ export function ColorModeIconToggle(props) {
onClick={toggleColorMode}
>
{colorMode === "light" ? (
<CiDark className="h-5 w-5 stroke-zinc-900 dark:hidden" />
<CiDark className="h-5 w-5 stroke-zinc-900" />
) : (
<CiLight className="h-5 w-5 stroke-white" />
)}