Settings: Add missing margin to settings checkboxes - Fixes #12794 (#13319)

* Add missing margin to settings checkboxes

* Fix checkboxes in notifications
This commit is contained in:
Lu
2021-08-27 00:42:51 +01:00
committed by GitHub
parent cae36ea554
commit 572e709d63
2 changed files with 9 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
<input <input
v-model="user.preferences.pushNotifications.unsubscribeFromAll" v-model="user.preferences.pushNotifications.unsubscribeFromAll"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('pushNotifications', 'unsubscribeFromAll')" @change="set('pushNotifications', 'unsubscribeFromAll')"
> >
<span>{{ $t('unsubscribeAllPush') }}</span> <span>{{ $t('unsubscribeAllPush') }}</span>
@@ -20,6 +21,7 @@
<input <input
v-model="user.preferences.emailNotifications.unsubscribeFromAll" v-model="user.preferences.emailNotifications.unsubscribeFromAll"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('emailNotifications', 'unsubscribeFromAll')" @change="set('emailNotifications', 'unsubscribeFromAll')"
> >
<span>{{ $t('unsubscribeAllEmails') }}</span> <span>{{ $t('unsubscribeAllEmails') }}</span>

View File

@@ -101,6 +101,7 @@
<input <input
v-model="user.preferences.advancedCollapsed" v-model="user.preferences.advancedCollapsed"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('advancedCollapsed')" @change="set('advancedCollapsed')"
> >
<span <span
@@ -116,6 +117,7 @@
<input <input
v-model="user.preferences.dailyDueDefaultView" v-model="user.preferences.dailyDueDefaultView"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('dailyDueDefaultView')" @change="set('dailyDueDefaultView')"
> >
<span <span
@@ -134,6 +136,7 @@
<input <input
v-model="user.preferences.displayInviteToPartyWhenPartyIs1" v-model="user.preferences.displayInviteToPartyWhenPartyIs1"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('displayInviteToPartyWhenPartyIs1')" @change="set('displayInviteToPartyWhenPartyIs1')"
> >
<span <span
@@ -148,6 +151,7 @@
<input <input
v-model="user.preferences.suppressModals.levelUp" v-model="user.preferences.suppressModals.levelUp"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('suppressModals', 'levelUp')" @change="set('suppressModals', 'levelUp')"
> >
<label>{{ $t('suppressLevelUpModal') }}</label> <label>{{ $t('suppressLevelUpModal') }}</label>
@@ -156,6 +160,7 @@
<input <input
v-model="user.preferences.suppressModals.hatchPet" v-model="user.preferences.suppressModals.hatchPet"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('suppressModals', 'hatchPet')" @change="set('suppressModals', 'hatchPet')"
> >
<label>{{ $t('suppressHatchPetModal') }}</label> <label>{{ $t('suppressHatchPetModal') }}</label>
@@ -164,6 +169,7 @@
<input <input
v-model="user.preferences.suppressModals.raisePet" v-model="user.preferences.suppressModals.raisePet"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('suppressModals', 'raisePet')" @change="set('suppressModals', 'raisePet')"
> >
<label>{{ $t('suppressRaisePetModal') }}</label> <label>{{ $t('suppressRaisePetModal') }}</label>
@@ -172,6 +178,7 @@
<input <input
v-model="user.preferences.suppressModals.streak" v-model="user.preferences.suppressModals.streak"
type="checkbox" type="checkbox"
class="mr-2"
@change="set('suppressModals', 'streak')" @change="set('suppressModals', 'streak')"
> >
<label>{{ $t('suppressStreakModal') }}</label> <label>{{ $t('suppressStreakModal') }}</label>