fix(kanban): make sure spacing between assignees and other task details works out evenly
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2024-01-28 16:41:24 +01:00
parent b3e2107503
commit 228d652b03
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 3 deletions

View File

@ -57,8 +57,7 @@
v-if="task.assignees.length > 0"
:assignees="task.assignees"
:avatar-size="24"
class="ml-1"
:inline="true"
class="mr-1"
/>
<checklist-summary :task="task" class="checklist"/>
<span class="icon" v-if="task.attachments.length > 0">
@ -218,13 +217,13 @@ $task-background: var(--white);
display: flex;
flex-wrap: wrap;
align-items: center;
margin-top: .25rem;
:deep(.tag),
:deep(.checklist-summary),
.assignees,
.icon,
.priority-label {
margin-top: .25rem;
margin-right: .25rem;
}