Кусок кода, касающийся установки размеров шрифтов Heading.
У меня не настолько прокачен скилл Sass, чтоб понять как тут менять значения? Где вообще выставлять размеры шрифта?
// Set headings sizes, line-heights and margins
@each $heading, $properties in $headings {
#{$heading} {
@include font-size(nth($properties, 1));
@include line-height(nth($properties, 2));
@include margin-top(nth($properties, 3));
@include margin-bottom(nth($properties, 4));
}
}
@media screen and (min-width: #{ $max-width + 5 + 'em'}) {
$leading: $leading-desktop;
$leading-rem: $leading-rem-desktop;
@import '../mixins/font-size';
@import '../mixins/line-height';
@import '../mixins/margin';
@each $heading, $properties in $headings {
#{$heading} {
@include font-size(nth($properties, 1));
@include line-height(nth($properties, 2));
@include margin-top(nth($properties, 3));
@include margin-bottom(nth($properties, 4));
}
}
}