Fix markdown CSS max-width in canvas

This commit is contained in:
Peaceultime 2024-05-06 15:12:31 +00:00
parent 17e4b5bab4
commit f3bc4f3e1e
1 changed files with 5 additions and 1 deletions

View File

@ -3833,6 +3833,10 @@ body {
width: calc((100vw - var(--page-width)) / 2);
}
.canvas-node-container .markdown-preview-sizer {
max-width: initial !important;
}
.published-container.is-readable-line-width .markdown-preview-sizer {
max-width: var(--page-width);
}