From 8f7979d8c7c6e415ba4bccb306eb4a358576ac90 Mon Sep 17 00:00:00 2001 From: Sunny Walker Date: Wed, 22 Mar 2017 09:06:56 -1000 Subject: [PATCH] switch to native font stack for examples --- examples/samples-styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/samples-styles.css b/examples/samples-styles.css index eb81ec8..f89afb2 100644 --- a/examples/samples-styles.css +++ b/examples/samples-styles.css @@ -9,7 +9,7 @@ each sample page. /* generic page styling */ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } -body { -webkit-font-smoothing: antialiased; font-family: "Helvetica Neue", sans-serif; font-size: 100%; margin: 0 auto; max-width: 40em; padding-bottom: 3em; } +body { -webkit-font-smoothing: antialiased; font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 100%; margin: 0 auto; max-width: 40em; padding-bottom: 3em; } pre, code { background-color: rgba(0, 0, 0, 0.04); padding: 0.2em 0; margin: 0; font-size: 85%; border-radius: 3px; font-family: Consolas, Menlo, monospace; } pre { white-space: pre-wrap; }