Hi Ben, I also notice that the font in Preview is extremely small (in Windows PC). And when I change it in Settings - Appearance, it then resulted in a HUGE H1 font on the Obsidian iOS mobile.
Currently, I am using this CSS (from some kind soul in this forum) to overwrite the Header 1. I am not sure how to overwrite the font size for the body though.
/* font size for header 1 in edit mode */
.cm-header-1 {
font-family: inter;
font-weight: 700 !important;
font-size: 18x;
font-weight: normal;
}
/* font size for header 1 in preview mode */
.markdown-preview-view h1 {
font-family: inter;
font-weight: 700 !important;
font-size: 16px;
font-weight: normal;
}