Skip to content

Instantly share code, notes, and snippets.

View iwonz's full-sized avatar

Ivan Zimin iwonz

View GitHub Profile
@iwonz
iwonz / font.mixin.sass
Created February 22, 2019 07:56
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);
}