Skip to content

Commit

Permalink
fix(apps-ui-kit): inconsistent font appearance in some browsers (#3575)
Browse files Browse the repository at this point in the history
* fix: use font-variant-alternates instead of font-feature-settings

* fix format
  • Loading branch information
evavirseda authored Oct 23, 2024
1 parent c7cf038 commit a37807e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/ui-kit/src/lib/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
.text-headline-md,
.text-headline-sm,
.text-body-ds-lg {
font-feature-settings: 'ss02' on;
font-variant-alternates: 'ss02';
}

.text-label-md {
font-feature-settings: 'ss01' on;
font-variant-alternates: 'ss01';
}
}

Expand Down

0 comments on commit a37807e

Please sign in to comment.