diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2020-01-02 10:48:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 10:48:52 +0100 |
commit | 3a179fe5c1d40a559d5d6d5191dabf98f7370c8c (patch) | |
tree | 2fb9bbd4e11e6bd5ab055e441d0cfd3f06883b5c /apps/files_sharing/src/components/PersonalSettings.vue | |
parent | 014f25f853d849e01f1946c05ddc025103ac488a (diff) | |
parent | 272aa9231c0857c2e88258dad884d35f0ee89b04 (diff) | |
download | nextcloud-server-3a179fe5c1d40a559d5d6d5191dabf98f7370c8c.tar.gz nextcloud-server-3a179fe5c1d40a559d5d6d5191dabf98f7370c8c.zip |
Fix style of the sharing setting checkbox (#18628)
Fix style of the sharing setting checkbox
Diffstat (limited to 'apps/files_sharing/src/components/PersonalSettings.vue')
-rw-r--r-- | apps/files_sharing/src/components/PersonalSettings.vue | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/apps/files_sharing/src/components/PersonalSettings.vue b/apps/files_sharing/src/components/PersonalSettings.vue index b7839e3d0df..b6cbbc180b6 100644 --- a/apps/files_sharing/src/components/PersonalSettings.vue +++ b/apps/files_sharing/src/components/PersonalSettings.vue @@ -22,11 +22,14 @@ <template> <div id="files-sharing-personal-settings" class="section"> <h2>{{ t('files', 'Sharing') }}</h2> - <input id="files-sharing-personal-settings-accept" - v-model="accepting" - type="checkbox" - @change="toggleEnabled"> - <label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label> + <p> + <input id="files-sharing-personal-settings-accept" + v-model="accepting" + class="checkbox" + type="checkbox" + @change="toggleEnabled"> + <label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label> + </p> </div> </template> |