0.12.x - metadata frontmatter triangle vertically mis-aligned

New in 0.12.0, the little disclosure triangle (frontmatter collapse-indicator) is top-aligned with the word METADATA instead of being centered with the text. As of 0.12.1 this is still visible.

0.11.13:
image
0.12.1:
image

Spent a few minutes but couldn’t figure out a way to fix this just by tinkering with the CSS found a workaround, see below.

Through trial and error I found a temporary workaround using CSS:

.markdown-preview-view .collapse-indicator {
  float: initial;
}

.markdown-preview-view .collapse-indicator svg {
  vertical-align: super;
}

will be fixed 0.12.2

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.