Skip to content

Instantly share code, notes, and snippets.

@martinwolf
Created May 14, 2013 10:33
Show Gist options
  • Save martinwolf/5575055 to your computer and use it in GitHub Desktop.
Save martinwolf/5575055 to your computer and use it in GitHub Desktop.
SCSS: Mixin: Font with optional vars
@mixin font-base($weight: normal, $style: normal) {
font-family: 'Proxima Nova', Arial, sans-serif;
font-weight: $weight;
font-style: $style;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment