fix(tasks): vertically center checkbox in project task row

The tooltip span wrapping the checkbox used the inherited line-height
(~24px), so the 18px inline-block checkbox sat on the baseline and
appeared misaligned with the task text. Making the span an inline-flex
container collapses it to the checkbox size and centers it properly.
This commit is contained in:
kolaente 2026-04-09 15:30:27 +02:00
parent 88b534776a
commit 8814cb37d8
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@
>
<span
v-tooltip="!canMarkAsDone ? $t('task.readOnlyCheckbox') : ''"
class="is-inline-flex is-align-items-center"
>
<FancyCheckbox
v-model="task.done"