fix(task): priority label spacing

This commit is contained in:
kolaente 2023-09-29 09:32:00 +02:00
parent 0b1c8ed4dd
commit 0887860b2a
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
<template v-if="priority === priorities.URGENT">{{ $t('task.priority.urgent') }}</template>
<template v-if="priority === priorities.DO_NOW">{{ $t('task.priority.doNow') }}</template>
</span>
<span class="icon" v-if="priority === priorities.DO_NOW">
<span class="icon pr-0" v-if="priority === priorities.DO_NOW">
<icon icon="exclamation"/>
</span>
</span>

View File

@ -38,7 +38,7 @@
class="mr-1"
/>
<priority-label :priority="task.priority" :done="task.done"/>
<priority-label :priority="task.priority" :done="task.done" class="pr-2"/>
<router-link
:to="taskDetailRoute"