File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/sass/9-Utilities/_utilities.fonts.scss
/** =====================================================================================
* Fonts
===================================================================================== */
/**
* Here we print out all our helper classes for our defined $font-sizes map
* Output of the classes in the this form:
.u-fs-m {}
.u-fs-xl {}
... etc
*/
@if variable-exists(font-sizes) {
@each $val, $size in $font-sizes {
@each $type, $color in $size {
.u-fs-#{$val} {
@include font-size($val);
}
}
}
}
/**
* Here we print out all our helper classes for our defined $font-weights map
* Output of the classes in the this form:
.u-fw-regular {}
.u-fw-semiBold {}
... etc
*/
@if variable-exists(font-weights) {
@each $name, $size in $font-weights {
.u-fw-#{$name} {
@include font-weight($name);
}
}
}