Skip to content

Commit

Permalink
Merge pull request #323 from Klotske/fix-color-toggle
Browse files Browse the repository at this point in the history
#320 - fixed color toggle being missing on light mode
  • Loading branch information
yk committed Jan 3, 2023
2 parents 29ffc27 + 20b313d commit b26d627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/UI/ColorModeIconToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" />
)}
Expand Down

0 comments on commit b26d627

Please sign in to comment.