fix(tasks): missing space when showing parent tasks and list title
All checks were successful
continuous-integration/drone/push Build is passing

See #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

View File

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