Fix whitespace in trash bin modal

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
This commit is contained in:
Richard Steinmetz 2021-06-11 14:32:48 +02:00
parent 50ffebd3a4
commit b6af858874
No known key found for this signature in database
GPG Key ID: 31BA3356F0FA2874
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;
}