add theme toggle button labels

This commit is contained in:
nkanaev 2025-03-04 14:08:42 +00:00
parent f06fc1f750
commit 011c9c7668

View File

@ -64,6 +64,7 @@
<button class="btn btn-link col-4 px-0 rounded-0" <button class="btn btn-link col-4 px-0 rounded-0"
:class="'theme-'+t" :class="'theme-'+t"
@click.stop="theme.name = t" @click.stop="theme.name = t"
:aria-label="t"
v-for="t in ['light', 'sepia', 'night']"> v-for="t in ['light', 'sepia', 'night']">
<span class="icon" v-if="theme.name == t">{% inline "check.svg" %}</span> <span class="icon" v-if="theme.name == t">{% inline "check.svg" %}</span>
</button> </button>