Skip to content

Commit

Permalink
feat: new icon for system theme
Browse files Browse the repository at this point in the history
Since the computer icon looked weird on mobile, and contrast seems to be the best in our case
  • Loading branch information
GabsEdits committed Sep 1, 2024
1 parent e924e6c commit b24f3b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<button @click="toggleThemeMode"
class="flex items-center p-2 text-gray-600 dark:text-gray-300 hover:text-gray-900 dark:hover:text-white">
<i class="material-symbols-outlined" v-if="theme === 'light'">light_mode</i>
<i class="material-symbols-outlined" v-if="theme === 'system'">computer</i>
<i class="material-symbols-outlined" v-if="theme === 'system'">contrast</i>
<i class="material-symbols-outlined" v-if="theme === 'dark'">dark_mode</i>
</button>

Expand Down

0 comments on commit b24f3b7

Please sign in to comment.