Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Breaking Changes

- Serif fonts are disabled by default. This should not have a noticeable impact in most cases, since the Serif fonts were already previously assigned to Public Sans (a Sans Serif font).
- Update USWDS from 3.4.1 to 3.6.0
- See release notes:
- https://github.com/uswds/uswds/releases/tag/v3.5.0
Expand Down
5 changes: 4 additions & 1 deletion src/scss/packages/_uswds-core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,12 @@ $site-palette: (
$theme-root-font-size: 16px !default,
// Font path
$theme-font-path: if(variable-exists(font-path), $font-path, '../fonts') !default,
// Font role
$theme-font-role-heading: 'sans',
$theme-font-role-alt: 'sans',
// Font type
$theme-font-type-sans: 'public-sans' !default,
$theme-font-type-serif: 'public-sans' !default,
$theme-font-type-serif: false !default,
// Type scale
$theme-type-scale-3xs: 'micro' !default,
$theme-type-scale-2xs: 2 !default,
Expand Down