
@mixin header-sizes($size) {
  @for $i from 1 through 6 {
    h#{$i}, .h#{$i} {
      $header-size: map-deep-get($type-header-sizes, $size, h#{$i}, font-size);
      $margin-bottom: map-deep-get($type-header-sizes, $size, h#{$i}, margin-bottom);

      font-size: $header-size;
      margin-bottom: $margin-bottom;
    }
  }
}
