Skip to content

Commit

Permalink
reorder themes
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Sep 3, 2024
1 parent 82d9b2b commit 219098d
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions src/components/SettingsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,36 @@
</q-btn>
</div> -->
<div class="row q-pt-md">
<q-btn
v-if="themes.includes('monochrome')"
dense
flat
@click="changeColor('monochrome')"
icon="format_color_fill"
color="grey"
size="md"
><q-tooltip>mono</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('cyber')"
dense
flat
@click="changeColor('cyber')"
icon="format_color_fill"
color="light-green-9"
size="md"
><q-tooltip>cyber</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('freedom')"
dense
flat
@click="changeColor('freedom')"
icon="format_color_fill"
color="pink-13"
size="md"
><q-tooltip>freedom</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('classic')"
dense
Expand All @@ -590,7 +620,7 @@
icon="format_color_fill"
color="deep-purple"
size="md"
><q-tooltip>classic</q-tooltip>
><q-tooltip>nostr</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('bitcoin')"
Expand Down Expand Up @@ -619,17 +649,7 @@
icon="format_color_fill"
color="brown"
size="md"
><q-tooltip>autumn</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('monochrome')"
dense
flat
@click="changeColor('monochrome')"
icon="format_color_fill"
color="grey"
size="md"
><q-tooltip>monochrome</q-tooltip>
><q-tooltip>nut</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('salvador')"
Expand All @@ -641,26 +661,6 @@
size="md"
><q-tooltip>blu</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('freedom')"
dense
flat
@click="changeColor('freedom')"
icon="format_color_fill"
color="pink-13"
size="md"
><q-tooltip>freedom</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('cyber')"
dense
flat
@click="changeColor('cyber')"
icon="format_color_fill"
color="light-green-9"
size="md"
><q-tooltip>cyber</q-tooltip>
</q-btn>
<q-btn
v-if="themes.includes('flamingo')"
dense
Expand Down

0 comments on commit 219098d

Please sign in to comment.