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