UPD: BG Colors

This commit is contained in:
Robert Kossessa
2024-02-02 02:59:07 +01:00
parent 934448fa61
commit 70c105e776
3 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
<div v-for="(option, index) in configPageOptions" :key="index" class="flex flex-1 items-center">
<button
class="flex-1 h-12 items-center text-center group px-3 font-heading"
:class="index===currentPage ? 'bg-zinc-900': 'hover:bg-zinc-800 text-zinc-200 bg-zinc-950'"
:class="index===currentPage ? 'bg-zinc-900': 'hover:bg-zinc-800 text-zinc-200'"
@click="currentPage = index">
{{ $t(option.titleKey) }}
</button>