/**
 * font-size and line-height
 *
 * Usage:
 *
 * .title {
 *     @include font-size(16px, 24px);
 * }
 *
 * Output:
 *
 * .title {
 *     font-size: 16px;
 *     line-height: 1.5;
 * }
 *
 * Or with 'auto' line-height:
 *
 * .title {
 *     @include font-size(16px, auto);
 * }
 */

@use "sass:math";

@mixin font-size($font-size, $line-height: $font-size) {
	font-size: $font-size;

	@if $line-height == auto {
		line-height: $line-height-base;
	} @else {
		line-height: strip-unit(math.div($line-height, $font-size));
	}
}
