Desktop, Mobile: Fixed vertical alignment of checkboxes

pull/11377/head
Laurent Cozic 2024-11-10 12:04:28 +00:00
parent e16f452bdf
commit 49e86d116f
1 changed files with 10 additions and 0 deletions

View File

@ -21,11 +21,21 @@ function pluginAssets(theme: any) {
list-style-type: none;
}
li.md-checkbox .checkbox-wrapper {
display: flex;
flex-direction: row;
}
li.md-checkbox input[type=checkbox] {
display: flex;
margin-left: -1.71em;
margin-right: 0.7em;
}
li.md-checkbox label {
display: flex;
}
ul.joplin-checklist {
list-style:none;
}