From 9ad0316dffe9ac189a310f4a42d0dd89fbd14259 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 23 Aug 2016 02:57:09 -0700 Subject: [PATCH] ensure Segoe is only used on Windows --- static/main.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/static/main.css b/static/main.css index ebf4efc0..3c03b0eb 100644 --- a/static/main.css +++ b/static/main.css @@ -19,13 +19,17 @@ body { overflow: hidden; } -body { +.app { color: #FFF; - font-family: BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, sans-serif; + font-family: BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif; font-size: 14px; line-height: 1.5em; } +.app.is-win32 { + font-family: 'Segoe UI', sans-serif; +} + #body { width: 100%; height: 100%;