Monospace font in the Markdown-only editor

I didn’t like the monospaced font (it’s good for coding but not for typing in a forum) so I changed it back by adding this CSS to my theme (let me know if there is a better way of doing this please!)

.d-editor-container--rich-editor-enabled .d-editor-textarea-wrapper textarea.d-editor-input {
    font-family: var(--font-family) !important;
    font-size: var(--base-font-size) !important;
    line-height: var(--line-height-large) !important;
}
2 Likes