Fix style of the sharing setting checkbox

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2020-01-02 09:39:12 +01:00
parent 1f9df30bdf
commit 272aa9231c
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
3 changed files with 10 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -22,11 +22,14 @@
<template> <template>
<div id="files-sharing-personal-settings" class="section"> <div id="files-sharing-personal-settings" class="section">
<h2>{{ t('files', 'Sharing') }}</h2> <h2>{{ t('files', 'Sharing') }}</h2>
<p>
<input id="files-sharing-personal-settings-accept" <input id="files-sharing-personal-settings-accept"
v-model="accepting" v-model="accepting"
class="checkbox"
type="checkbox" type="checkbox"
@change="toggleEnabled"> @change="toggleEnabled">
<label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label> <label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label>
</p>
</div> </div>
</template> </template>