Sha256: 680ba4263cef458ed566a33d1b85d245410bc418e2ba01540507bbfe377e2d42
Contents?: true
Size: 688 Bytes
Versions: 11
Compression:
Stored size: 688 Bytes
Contents
// Roboto as default Mekari fontfamily $font-family: "Roboto"; $fonts: ( 300: "Roboto-Regular", 400: "Roboto-Regular", 500: "Roboto-Medium", 700: "Roboto-Medium", 900: "Roboto-Medium" ); $font-path: #{"../../fonts/Roboto/"} !default; @if $is-using-rubygems { $font-path: #{"fonts/Roboto/"}; } @if $is-using-gcs-font-path { $font-path: "https://storage.googleapis.com/mekari-ui-toolkit-assets/Roboto/"; } @each $font-weight, $font-type in $fonts { $src: #{$font-path}#{$font-type}; @font-face { font-family: $font-family; font-style: normal; font-weight: #{$font-weight}; src: local($font-family); src: url("#{$src}.ttf") format("truetype"); } }
Version data entries
11 entries across 11 versions & 1 rubygems