diff options
| author | Joe Carstairs <me@joeac.net> | 2024-10-05 17:20:10 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2024-10-05 17:20:10 +0100 |
| commit | 86f31617fb3b2f7f8b42451451840a6cc8ee851c (patch) | |
| tree | 4cdb2d1ef4b16867af91ffd5b89676dbd7b31806 /scss/values/typography/_index.scss | |
| parent | 41bbbc349696dc72a1a672e0917c0ff1ab00835a (diff) | |
applies prettier
Diffstat (limited to 'scss/values/typography/_index.scss')
| -rw-r--r-- | scss/values/typography/_index.scss | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/scss/values/typography/_index.scss b/scss/values/typography/_index.scss index 3aa4384..cacadcf 100644 --- a/scss/values/typography/_index.scss +++ b/scss/values/typography/_index.scss @@ -4,15 +4,11 @@ @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) + 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 - ); + @return calc(map.get(constants.$base-font-size, $breakpoint) / 8); } - |
