Font family for inline code

I’ve noticed that inline code uses a different font family than that which is set for base Logseq or CodeMirror in my custom css, but I can’t locate any other reference to font family. Has anyone else experienced this/has any tips?

bumping for exposure

I use this CSS to change “code” font inline and in CodeMirror:

:not(pre)>code,
.CodeMirror {
	font-family: "iA Writer Mono S", "IBM Plex Mono", Menlo, Monaco, MonoLisa, 'Fira Code',Consolas,'COURIER NEW',monospace;
	font-feature-settings: normal;
}
1 Like