Ugh, I did some CSS learning. This code changes the heading font size in the edit mode. Double Ugh, I don’t know what I’m doing. Ha
I just tried the following code. This looks to make the editing mode emulate plaintext coding. This could be “Light/Dark simple mode” maybe, again, I don’t code css. It is nice that there is a “ctrl+shift+I” to look at debug for the css.
body {
font-size: 13px;
font-family: Source Code Pro, Fira Code, monospace;
--font-monospace: Source Code Pro, Fira Code, monospace;
}
.CodeMirror pre.CodeMirror-line {
font-size: 13px;
font-family: Source Code Pro, Fira Code, monospace;
}
.cm-header-1 {
font-size: 13px;
}
.cm-header-2 {
font-size: 13px;
}
.cm-header-3 {
font-size: 13px;
}
.cm-s-obsidian pre.HyperMD-header {
padding-bottom: 0px;
}