feat: make guild settings buttons selectable by tab

This commit is contained in:
SauceyRed 2025-07-13 00:54:54 +02:00
parent 9293a48394
commit e73df90310
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462

View file

@ -1,7 +1,7 @@
<template>
<div id="guild-options-container">
<div v-for="setting of settings" class="guild-option" tabindex="0">
<button class="guild-option-button" @click="setting.action">{{ setting.name }}</button>
<button class="guild-option-button" @click="setting.action" tabindex="0">{{ setting.name }}</button>
</div>
</div>
</template>