Skip to content

Commit

Permalink
brand,fonts - reenable google fonts in html
Browse files Browse the repository at this point in the history
  • Loading branch information
cscheid committed Sep 20, 2024
1 parent 1399d2e commit 90f6bfd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/core/sass/brand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,10 @@ const brandTypographyBundle = (
const family = resolvedFontOptions.family;
const font = getFontFamilies(family);
const result: HTMLFontInformation = {};
result.family = "";
// FIXME
// resolveGoogleFontFamily(font) ??
// resolveBunnyFontFamily(font) ??
// resolveFilesFontFamily(font) ?? family;
result.family = resolveGoogleFontFamily(font) ??
// resolveBunnyFontFamily(font) ??
// resolveFilesFontFamily(font) ??
family;
for (
const entry of [
"line-height",
Expand Down

0 comments on commit 90f6bfd

Please sign in to comment.