Specify SF Mono Regular for code and pre blocks — fix an issue where it was choosing a too-heavy SF Mono.

This commit is contained in:
Brent Simmons
2024-12-16 07:21:19 -08:00
parent 40b6a45db6
commit 0e24d43554

View File

@@ -176,9 +176,9 @@ pre {
}
code, pre {
font-family: "SF Mono", Menlo, Courier, monospace;
/* font-size: 1em;*/
/* -webkit-hyphens: none;*/
font-family: "SF Mono Regular", Menlo, Courier, monospace;
font-size: 1em;
-webkit-hyphens: none;
background: var(--code-background-color);
}