Skip to content

Instantly share code, notes, and snippets.

@travis-g
Last active February 13, 2017 18:13
Show Gist options
  • Save travis-g/06928dc885bdcb88f789c1a06d6db1d3 to your computer and use it in GitHub Desktop.
Save travis-g/06928dc885bdcb88f789c1a06d6db1d3 to your computer and use it in GitHub Desktop.
CSS to use the system default font
.system-font {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
$font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
.system-font {
font-family: $font-stack;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment