Skip to content

Commit

Permalink
fix(settings): use outline variant for theme mode
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfriesen committed Nov 18, 2024
1 parent 23ba83a commit 37ed353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/timer/app/pages/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const themePrimaryOptions = [

<UButtonGroup v-model="themeMode" class="min-w-60">
<UButton v-for="mode in themeModes" :key="mode.label" :label="mode.label" :icon="mode.icon"
:color="themeMode === mode.value ? 'primary' : 'neutral'" variant="subtle" block class="w-full"
:color="themeMode === mode.value ? 'primary' : 'neutral'" variant="outline" block class="w-full"
@click="themeMode = mode.value" />
</UButtonGroup>
</label>
Expand Down

0 comments on commit 37ed353

Please sign in to comment.