Skip to content

Instantly share code, notes, and snippets.

@iwonz
Created February 22, 2019 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwonz/ee4caf4a50ddf1d7cd469cf3cd2ea605 to your computer and use it in GitHub Desktop.
Save iwonz/ee4caf4a50ddf1d7cd469cf3cd2ea605 to your computer and use it in GitHub Desktop.
SASS font mixin
@mixin font($size: 16px, $weight: regular, $family: 'Fira Sans') {
font-family: $family;
font-size: $size;
font-weight: map-get((
thin: 100,
light: 300,
regular: 400,
bold: 700
), $weight);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment