Add more padding in transfer ownership

Signed-off-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
Gary Kim 2020-01-09 19:27:46 +08:00
parent 31c74e87c8
commit 603a48cfca
No known key found for this signature in database
GPG Key ID: 9349B59FB54594AC
3 changed files with 9 additions and 4 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

@ -23,7 +23,7 @@
<div>
<h3>{{ t('files', 'Transfer ownership of a file or folder') }} </h3>
<form @submit.prevent="submit">
<p>
<p class="transfer-select-row">
<span>{{ readableDirectory }}</span>
<button v-if="directory === undefined" @click.prevent="start">
{{ t('files', 'Choose file or folder to transfer') }}
@ -243,4 +243,9 @@ p {
}
}
}
.transfer-select-row {
span {
margin-right: 8px;
}
}
</style>