welcome.html: Provide fallback font-families as we are unsure

Yosemite know's about system-ui.

We do know `-apple-system` predated `system-ui` and are otherwise
aware that `Menlo` and `Helvetica Neue` will exist and be 'right'
on 10.10 and earlier.
This commit is contained in:
Aaron Gyes 2022-01-28 19:43:43 -08:00
parent 77fa3df7dc
commit 75d1a0cb5a

View file

@ -2,11 +2,11 @@
<head>
<style>
body {
font-family: system-ui;
font-family: system-ui, -apple-system, "Helvetica Neue", sans-serif;
font-size: 10pt;
}
code, tt {
font-family: ui-monospace;
font-family: ui-monospace, Menlo, monospace;
}
</style>