-
Couldn't load subscription status.
- Fork 107
Description
Is your feature request related to a problem? Please describe.
The ToDo list is functional and great, but lacking a little bit of some beauty and aesthetics that the note-taking platforms are using to make the user experience even better.
Describe the solution you'd like
The solution is to make the checked/done line easy on the eyes to recognize.
Add the following CSS code:
.checkbox-item.checked {
color: gray;
text-decoration: line-through;
}
And change the border radius to 50%:
#editor-wrapper div.ProseMirror .checkbox-item::before {
border-radius: 50%;
}
That's all.
Additional context
I took screenshots to show how it was and how it will be.

