ensure Segoe is only used on Windows

This commit is contained in:
Feross Aboukhadijeh
2016-08-23 02:57:09 -07:00
parent 854aae7dc5
commit 9ad0316dff

View File

@@ -19,13 +19,17 @@ body {
overflow: hidden; overflow: hidden;
} }
body { .app {
color: #FFF; color: #FFF;
font-family: BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, sans-serif; font-family: BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
font-size: 14px; font-size: 14px;
line-height: 1.5em; line-height: 1.5em;
} }
.app.is-win32 {
font-family: 'Segoe UI', sans-serif;
}
#body { #body {
width: 100%; width: 100%;
height: 100%; height: 100%;