zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 57113bab2f3802cc823494b9aa1df280cb005e2a (tree)
parent 68b0fce62f684a4b491ebb36dea06bd4d9ff5219
Author: Jay Weisskopf <jay@jayschwa.net>
Date:   Sat,  8 Dec 2018 15:04:56 -0500

docs: Prefer system-ui font-family

system-ui is a new generic font-family for matching the font used in the operating system's native user interface. E.g. Roboto on Android, San Francisco on macOS, Segoe UI on Windows, etc.

https://caniuse.com/#search=system-ui
Diffstat:
Mdoc/langref.html.in | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/langref.html.in b/doc/langref.html.in @@ -8,7 +8,7 @@ body{ background-color:#111; color: #bbb; - font-family: sans-serif; + font-family: system-ui, sans-serif; } a { color: #88f;