When using the Better Todos options, the due date for classes can be hidden due to the class name being too long. This can be an issue stopping users from using it, as the default todo list does not have this limitation.
Cause
I have found in the CSS that it is caused by an injected style on the .bettercanvas-todo-container which adds a max-height: 100px.
Solution
Using a user style, I have been able to fix the issue by simply setting a max-height: unset. To fix this here, the max-height style should be removed.
Problem
When using the Better Todos options, the due date for classes can be hidden due to the class name being too long. This can be an issue stopping users from using it, as the default todo list does not have this limitation.
Cause
I have found in the CSS that it is caused by an injected style on the
.bettercanvas-todo-container
which adds amax-height: 100px
.Solution
Using a user style, I have been able to fix the issue by simply setting a
max-height: unset
. To fix this here, themax-height
style should be removed.