Skip to content

Commit

Permalink
Fixed regular font weight
Browse files Browse the repository at this point in the history
  • Loading branch information
zetareticoli committed Jul 14, 2023
1 parent eb1cb67 commit f244273
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
22 changes: 11 additions & 11 deletions css/_variables.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Wed, 05 Jul 2023 15:26:36 GMT
* Generated on Fri, 14 Jul 2023 13:41:05 GMT
*/

:root {
Expand Down Expand Up @@ -165,9 +165,9 @@
--font-size-8: 40px;
--font-size-9: 48px;
--font-size-10: 56px;
--font-weight-extra-light: normal;
--font-weight-light: normal;
--font-weight-regular: normal;
--font-weight-extra-light: 400;
--font-weight-light: 400;
--font-weight-regular: 400;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--spacing-xxs: 4px;
Expand All @@ -191,9 +191,9 @@
--font-tracking-narrow: -1.3px;
--font-tracking-tight: -2px;
--font-tracking-normal: 0px;
--font-style-italic: normal;
--font-style-bold-italic: normal;
--font-style-semibold-italic: normal;
--font-style-italic: 400;
--font-style-bold-italic: 400;
--font-style-semibold-italic: 400;
--shadow-s-x: 0;
--shadow-s-y: 4px;
--shadow-s-blur: 4px;
Expand Down Expand Up @@ -231,10 +231,10 @@
--heading-4-font-weight: 600;
--heading-5-font-weight: 600;
--heading-6-font-weight: 600;
--body-font-weight: normal;
--body-font-weight: 400;
--caption-font-weight-semibold: 600;
--caption-font-weight-regular: normal;
--lead-font-weight: normal;
--caption-font-weight-regular: 400;
--lead-font-weight: 400;
--heading-1-font-size: 40px;
--heading-2-font-size: 32px;
--heading-3-font-size: 28px;
Expand Down Expand Up @@ -292,7 +292,7 @@
--blockquote-cite-size: 14px;
--blockquote-font: 'Titillium Web';
--blockquote-cite-font: 'Titillium Web';
--blockquote-font-weight: normal;
--blockquote-font-weight: 400;
--icon-default: #1a1a1a;
--icon-primary: #0066cc;
--icon-primary-hover: #004d99;
Expand Down
14 changes: 7 additions & 7 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// Do not edit directly
// Generated on Wed, 05 Jul 2023 15:26:36 GMT
// Generated on Fri, 14 Jul 2023 13:41:05 GMT

$icon-size-xxl: 64px;
$icon-size-xl: 48px;
Expand Down Expand Up @@ -33,9 +33,9 @@ $shadow-s-spread: 0;
$shadow-s-blur: 4px;
$shadow-s-y: 4px;
$shadow-s-x: 0;
$font-style-semibold-italic: normal;
$font-style-bold-italic: normal;
$font-style-italic: normal;
$font-style-semibold-italic: 400;
$font-style-bold-italic: 400;
$font-style-italic: 400;
$font-tracking-normal: 0px;
$font-tracking-tight: -2px;
$font-tracking-narrow: -1.3px;
Expand All @@ -52,9 +52,9 @@ $font-serif: 'Lora';
$font-sans: 'Titillium Web';
$font-weight-bold: 700;
$font-weight-semibold: 600;
$font-weight-regular: normal;
$font-weight-light: normal;
$font-weight-extra-light: normal;
$font-weight-regular: 400;
$font-weight-light: 400;
$font-weight-extra-light: 400;
$font-size-10: 56px;
$font-size-9: 48px;
$font-size-8: 40px;
Expand Down

0 comments on commit f244273

Please sign in to comment.