fix: theme-matched Okay button in mods/update.vue

This commit is contained in:
Nikita Krupin 2022-08-20 18:25:28 -04:00
parent edb3909f57
commit 24fa7cb51b
1 changed files with 8 additions and 3 deletions

View File

@ -27,7 +27,13 @@
<p>{{ lang.noupdatemessage }}</p> <p>{{ lang.noupdatemessage }}</p>
<div class="bottom"> <div class="bottom">
<v-btn rounded @click="getLatest">{{ lang.refresh }}</v-btn> <v-btn rounded @click="getLatest">{{ lang.refresh }}</v-btn>
<v-btn rounded color="primary" @click="$router.go(-1)"> <v-btn
rounded
depressed
color="primary"
class="background--text"
@click="$router.go(-1)"
>
{{ lang.okay }} {{ lang.okay }}
</v-btn> </v-btn>
</div> </div>
@ -82,9 +88,8 @@
<v-btn <v-btn
rounded rounded
depressed depressed
class="ml-2" class="background--text ml-2"
color="primary" color="primary"
:class="$vuetify.theme.dark ? 'background--text' : 'white--text'"
@click="install()" @click="install()"
> >
{{ lang.update }} {{ lang.update }}