Thank you for providing an excellent theme. I really love it, but after the v1.0.3 update, the display has become distorted.
/* make edit mode use a different readable line length than reading mode */
.markdown-source-view.mod-cm6.is-readable-line-width .cm-sizer,
.markdown-source-view.mod-cm6.is-readable-line-width .cm-content,
.markdown-source-view.mod-cm6.is-readable-line-width .cm-line {
width: var(--editing-file-line-width) !important;
margin: auto;
padding: 0;
}
↓ Removing "margin: auto;" resolves the display distortion issue.
/* make edit mode use a different readable line length than reading mode */
.markdown-source-view.mod-cm6.is-readable-line-width .cm-sizer,
.markdown-source-view.mod-cm6.is-readable-line-width .cm-content,
.markdown-source-view.mod-cm6.is-readable-line-width .cm-line {
width: var(--editing-file-line-width) !important;
padding: 0;
}
Thank you for providing an excellent theme. I really love it, but after the v1.0.3 update, the display has become distorted.
↓ Removing "margin: auto;" resolves the display distortion issue.