1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Fix alignment and mixin in _fonts.scss

This commit is contained in:
Grégoire Ciles
2022-06-06 11:30:49 -04:00
committed by Chauncey McAskill
parent c8d4e7c154
commit de1a5904a8

View File

@@ -32,8 +32,14 @@
// @output The `@font-face` at-rules specifying the custom fonts.
@mixin font-faces($webfonts, $dir) {
@each $webfont in $webfonts {
@include font-face($webfont, $dir);
@if (list-separator($webfonts) == "comma") {
@each $webfont in $webfonts {
@include font-face($webfont, $dir);
}
} @else if (list-separator($webfonts) == "space") {
@include font-face($webfonts, $dir);
} @else {
@error 'Invalid list separator for $webfonts';
}
}
@@ -47,8 +53,8 @@
@function ff($font-family) {
@if not map-has-key($font-families, $font-family) {
@error "No font-family found in $font-families map for `#{$font-family}`.";
}
@error "No font-family found in $font-families map for `#{$font-family}`.";
}
$value: map-get($font-families, $font-family);
@return $value;