fix(reminders): align remove icon with the rest
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2023-06-10 17:29:30 +02:00
parent 9ec29cad30
commit bfcb36e093
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 12 additions and 11 deletions

View File

@ -6,17 +6,18 @@
:class="{ 'overdue': r.reminder < new Date() }"
class="reminder-input"
>
<div class="reminder-detail">
<ReminderDetail
:disabled="disabled"
v-model="reminders[index]"
@update:model-value="updateData"/>
</div>
<div>
<BaseButton v-if="!disabled" @click="removeReminderByIndex(index)" class="remove">
<icon icon="times"/>
</BaseButton>
</div>
<ReminderDetail
class="reminder-detail"
:disabled="disabled"
v-model="reminders[index]"
@update:model-value="updateData"/>
<BaseButton
v-if="!disabled"
@click="removeReminderByIndex(index)"
class="remove"
>
<icon icon="times"/>
</BaseButton>
</div>
<ReminderDetail