summaryrefslogtreecommitdiff
path: root/scss/values/typography/_index.scss
blob: cacadcf8592bfffae86cae9c0430d204a3aff9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@use 'sass:map';

@use 'constants';

@function font-size($font-size-grade, $breakpoint: initial) {
  @return calc(
    map.get(constants.$base-font-size, $breakpoint) *
      map.get(constants.$font-size-factor, $font-size-grade)
  );
}

@function border-width($breakpoint: initial) {
  @return calc(map.get(constants.$base-font-size, $breakpoint) / 8);
}