Skip to content

Commit

Permalink
fix: handle $colorMode.unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
Renovamen committed Jul 5, 2024
1 parent 1ef6e69 commit e033636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/components/shared/Logo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
width="1.7em"
viewBox="0 0 32 32"
xmlns="http://www.w3.org/2000/svg"
:fill="$colorMode.value === 'dark' ? '#e2e8f0' : '#1e293b'"
:fill="$colorMode.unknown || $colorMode.value !== 'dark' ? '#1e293b' : '#e2e8f0'"
>
<circle cx="15.672" cy="15.184" r="11.544" fill-opacity="0.15" />
<path
Expand Down

0 comments on commit e033636

Please sign in to comment.