fix(tasks): missing space when showing parent tasks and list title

See vikunja/frontend#2771
This commit is contained in:
kolaente 2022-12-02 18:05:48 +01:00
parent b44d11cfc0
commit 83fb8c3ded
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,7 @@
<router-link
:to="taskDetailRoute"
:class="{ 'done': task.done}"
:class="{ 'done': task.done, 'show-list': showList && taskList !== null}"
class="tasktext"
>
<span>
@ -391,6 +391,10 @@ function hideDeferDueDatePopup(e) {
width: auto;
}
.show-list .parent-tasks {
padding-left: .25rem;
}
.remove {
color: var(--danger);
}