feat(frontend): Correctly align todo list checkbox

If a task in a markdown todo list has multiple lines, the checkbox
is now correctly placed at the first line and not the last line.
Closes 

Signed-off-by: Valentin Geyer <trayshar@t-online.de>
This commit is contained in:
Valentin Geyer 2024-12-30 21:51:24 +01:00 committed by Erik Michelson
parent 94bb6e9c9f
commit e61777612f

View file

@ -23,6 +23,12 @@
} }
} }
// Fixes checkboxes moving to bottom row if task is multiline
ul.contains-task-list > li.task-list-item:has(input.task-list-item-checkbox) {
display: flex;
align-items: baseline;
}
.alert { .alert {
& > p, & > ul { & > p, & > ul {
margin-bottom: 0; margin-bottom: 0;