Skip to content

Commit

Permalink
font-weight unify
Browse files Browse the repository at this point in the history
  • Loading branch information
codecalm committed Oct 31, 2020
1 parent 6312bcf commit 4531ba2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 47 deletions.
39 changes: 0 additions & 39 deletions src/pages/sitemap.xml

This file was deleted.

10 changes: 3 additions & 7 deletions src/scss/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,9 @@ $utilities: (
"font-weight": (
property: font-weight,
values: (
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
extrabold: 800,
black: 900,
light: $font-weight-light,
normal: $font-weight-normal,
bold: $font-weight-bold,
)
),
"border": (
Expand Down
3 changes: 2 additions & 1 deletion src/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ $icon-stroke-width: 1.5 !default;

//Fonts
$font-size-base: .875rem !default;
$font-weight-light: 300 !default;
$font-weight-normal: 400 !default;
$font-weight-bold: 500 !default;
$font-weight-bold: 600 !default;
$body-letter-spacing: 0 !default;

$line-height-base: (1.5rem/$font-size-base) !default;
Expand Down

0 comments on commit 4531ba2

Please sign in to comment.