Skip to content

Instantly share code, notes, and snippets.

@tankbar
Last active August 23, 2016 08:37
Show Gist options
  • Save tankbar/85316b0d193f968e4db0ef0730749e4f to your computer and use it in GitHub Desktop.
Save tankbar/85316b0d193f968e4db0ef0730749e4f to your computer and use it in GitHub Desktop.
CSS default font-smoothing for typography.scss
// These text rendering optimization settings are default on all our sites from 2016.
body {
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
/* Recommended default font-size and line-height */
line-height: 1.5;
font-size: 16px;
font-size: 1rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment