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