Skip to content
This repository has been archived by the owner on Nov 17, 2021. It is now read-only.

Commit

Permalink
Correctly assign font family variables. (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
notlee committed Jan 21, 2019
1 parent 17b5d52 commit 8bf5516
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/scss/_brand.scss
Expand Up @@ -21,7 +21,7 @@

@if oBrandGetCurrentBrand() == 'master' {
$o-typography-sans: oFontsGetFontFamilyWithFallbacks(MetricWeb) !default!global;
$o-typography-serif: 'Georgia, serif' !default!global;
$o-typography-serif: Georgia, serif !default!global;
$o-typography-display: oFontsGetFontFamilyWithFallbacks(FinancierDisplayWeb) !default!global;

@include oBrandDefine('o-typography', 'master', (
Expand Down Expand Up @@ -79,7 +79,7 @@

@if oBrandGetCurrentBrand() == 'internal' {
$o-typography-sans: oFontsGetFontFamilyWithFallbacks(MetricWeb) !default!global;
$o-typography-serif: 'Georgia, serif' !default!global;
$o-typography-serif: Georgia, serif !default!global;
$o-typography-display: oFontsGetFontFamilyWithFallbacks(MetricWeb) !default!global;

@include oBrandDefine('o-typography', 'internal', (
Expand Down Expand Up @@ -131,9 +131,9 @@
(weight: bold, style: italic)
));

$o-typography-sans: 'Arial, sans' !default!global;
$o-typography-serif: 'Georgia, serif' !default!global;
$o-typography-display: 'Arial, sans' !default!global;
$o-typography-sans: Arial, sans !default!global;
$o-typography-serif: Georgia, serif !default!global;
$o-typography-display: Arial, sans !default!global;

// Other components may get values from the scale map and assume a px value.
// Therefore we must set a line height of px value.
Expand Down

0 comments on commit 8bf5516

Please sign in to comment.