Add more padding in transfer ownership

Signed-off-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
Gary Kim 2020-01-10 12:03:46 +08:00
parent f2575ccdb5
commit 4f8e3cfced
No known key found for this signature in database
GPG key ID: 9349B59FB54594AC
3 changed files with 6 additions and 1 deletions

Binary file not shown.

Binary file not shown.

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>