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

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

View File

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