fix(list view): align nested subtasks with the parent text
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2023-09-07 13:47:52 +02:00
parent e41712647d
commit f256fc3843
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 1 deletions

View File

@ -136,7 +136,7 @@
:disabled="disabled"
:can-mark-as-done="canMarkAsDone"
:all-tasks="allTasks"
class="ml-5"
class="subtask-nested"
/>
</template>
</template>
@ -486,4 +486,8 @@ function openTaskDetail() {
margin-bottom: 0;
}
}
.subtask-nested {
margin-left: 1.75rem;
}
</style>