diff options
| author | Eris <femmediscord@gmail.com> | 2021-06-14 20:09:28 +0000 |
|---|---|---|
| committer | Eris <femmediscord@gmail.com> | 2021-06-14 20:09:28 +0000 |
| commit | 8fa0331771812e67fa4aa045f2997c80bc72cde2 (patch) | |
| tree | e1d8153807024a0291c1ba8317035b464bf2b716 /src | |
| parent | 2725a0c6398a876590b458ff1a8d6c2cc9af1d11 (diff) | |
Add apply and reset themes to top of theme tab
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/settings_modal/tabs/theme_tab/theme_tab.vue | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/components/settings_modal/tabs/theme_tab/theme_tab.vue b/src/components/settings_modal/tabs/theme_tab/theme_tab.vue index 548dc852..8d5a7bc6 100644 --- a/src/components/settings_modal/tabs/theme_tab/theme_tab.vue +++ b/src/components/settings_modal/tabs/theme_tab/theme_tab.vue @@ -1,6 +1,21 @@ <template> <div class="theme-tab"> <div class="presets-container"> + <div class="apply-container"> + <button + class="btn button-default submit" + :disabled="!themeValid" + @click="setCustomTheme" + > + {{ $t('general.apply') }} + </button> + <button + class="btn button-default" + @click="clearAll" + > + {{ $t('settings.style.switcher.reset') }} + </button> + </div><br> <div class="save-load"> <div v-if="themeWarning" |
