Spaces between list are still broken in 1.21.4

Spaces between list are still broken in 1.21.4

As shown in the picture.

I found that the issue occur in column view and notebook view. how can i fix it manually using css before the official fix?

Sorry, without "Everforest theme" enabled, the issue happens in every view.

how can i download the older version to use while I'm waiting for official fix?

@Siwanard Bootkham‭

You can add this CSS snippet to your theme until the next version is released:

.memo_markdown_styles_markdown-column-class ul ul,
.memo_markdown_styles_markdown-column-class ul ol,
.memo_markdown_styles_markdown-column-class ol ol,
.memo_markdown_styles_markdown-column-class ol ul,

.memo_markdown_styles_markdown-note-class ul ul,
.memo_markdown_styles_markdown-note-class ul ol,
.memo_markdown_styles_markdown-note-class ol ol,
.memo_markdown_styles_markdown-note-class ol ul,

.memo_markdown_styles_markdown-class ul ul,
.memo_markdown_styles_markdown-class ul ol,
.memo_markdown_styles_markdown-class ol ol,
.memo_markdown_styles_markdown-class ol ul {
  margin-top: 0;
}

@Matt

Thanks, Matt. I added CSS snippet as shown below to make the look similar to the 1.21.1 as much as I can. I wish the next update will get the old appearance back.

.memo_markdown_styles_markdown-column-class ul ul,
.memo_markdown_styles_markdown-column-class ul ol,
.memo_markdown_styles_markdown-column-class ol ol,
.memo_markdown_styles_markdown-column-class ol ul,

.memo_markdown_styles_markdown-note-class ul ul,
.memo_markdown_styles_markdown-note-class ul ol,
.memo_markdown_styles_markdown-note-class ol ol,
.memo_markdown_styles_markdown-note-class ol ul,

.memo_markdown_styles_markdown-class ul ul,
.memo_markdown_styles_markdown-class ul ol,
.memo_markdown_styles_markdown-class ol ol,
.memo_markdown_styles_markdown-class ol ul {
  margin-top: 4px;
  margin-bottom: 4px;
  padding-left: 25px;
}
This post has been closed.