Merge pull request #3195 from nextcloud/fix/3174/remove-trash-bin-whitespace

Fix whitespace in trash bin modal
This commit is contained in:
Richard Steinmetz 2021-06-11 14:44:38 +02:00 committed by GitHub
commit aee5aeeeb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -32,7 +32,9 @@
<span v-if="!items.length">{{ t('calendar', 'You do not have any deleted calendars or events') }}</span>
<table v-else>
<tr>
<th>{{ t('calendar', 'Name') }}</th>
<th class="name">
{{ t('calendar', 'Name') }}
</th>
<th class="deletedAt">
{{ t('calendar', 'Deleted') }}
</th>
@ -199,7 +201,7 @@ export default {
<style lang="scss" scoped>
.modal__content {
width: 40vw;
max-width: 40vw;
margin: 2vw;
}
table {
@ -211,6 +213,10 @@ th, td {
th {
font-weight: bold;
}
.name {
// Take remaining width to prevent whitespace on the right side
width: 100vw;
}
.deletedAt {
text-align: right;
}