Skip to content

Instantly share code, notes, and snippets.

@cristian-frumusanu
Created April 24, 2020 10:03
Show Gist options
  • Save cristian-frumusanu/41ed15da92cfb92d41d6057ebea10f97 to your computer and use it in GitHub Desktop.
Save cristian-frumusanu/41ed15da92cfb92d41d6057ebea10f97 to your computer and use it in GitHub Desktop.
SCSS - generate font weight helper classes
$fw: (300, 400, 500, 700);
@each $w in $fw {
.fw-#{$w} { font-weight: $w !important; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment