HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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);
		}
	}
}