Spectrum
Spectrum copied to clipboard
Fix checkbox vertical position
Checkboxes (- [ ]) are not aligned correctly. I see that there are competing css rules for their vertical-align. A quick fix seems to be to just add more specificity to the overwritten rule, adding .task-list-label to the middle:
.markdown-source-view.mod-cm6 .task-list-label .task-list-item-checkbox {
vertical-align: baseline;
}
Hi, please create a PR with the fix. Thank you. :)
Yeah still no PR, will try to create it for that issue, need to learn how to test them first
Unfortunately that CSS does not work anymore @wobbba, at least I tried to use it as a CSS snippet. Will see if I can figure out the fix, thats a shame this theme is not maintained anymore, such a beautiful theme
Any fixes for this? :(
Alrighty, the original comment fix didn't work, I just commented out this within the CSS. Doing this fixes it (maybe):
.markdown-source-view.mod-cm6 .task-list-item-checkbox {
/* vertical-align: baseline*/
}
Before:
After: