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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# HEAD

## Features
* **assets:** Upgrade Inter font to version 4.1, drop support for Inter `woff` (bedrock #15999)

## Bug Fixes

Expand All @@ -15,6 +16,7 @@
## Features
* **js:** Migrate tests from Karma to Jasmine browser runner (#899)


## Bug Fixes
* **css:** Form select elements don't match styling when disabled (#885)
* **css:** Modal close button pointer overridden by defaults (#955)
Expand Down
Binary file removed assets/fonts/Inter-Bold.woff
Binary file not shown.
Binary file modified assets/fonts/Inter-Bold.woff2
Binary file not shown.
Binary file removed assets/fonts/Inter-BoldItalic.woff
Binary file not shown.
Binary file modified assets/fonts/Inter-BoldItalic.woff2
Binary file not shown.
Binary file removed assets/fonts/Inter-Italic.woff
Binary file not shown.
Binary file modified assets/fonts/Inter-Italic.woff2
Binary file not shown.
Binary file removed assets/fonts/Inter-Regular.woff
Binary file not shown.
Binary file modified assets/fonts/Inter-Regular.woff2
Binary file not shown.
16 changes: 4 additions & 12 deletions assets/sass/protocol/includes/fonts/_inter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,29 @@
font-family: Inter;
font-style: normal;
font-weight: normal;
src:
url('#{config.$font-path}/Inter-Regular.woff2') format('woff2'),
url('#{config.$font-path}/Inter-Regular.woff') format('woff');
src: url('#{config.$font-path}/Inter-Regular.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: Inter;
font-style: normal;
font-weight: bold;
src:
url('#{config.$font-path}/Inter-Bold.woff2') format('woff2'),
url('#{config.$font-path}/Inter-Bold.woff') format('woff');
src: url('#{config.$font-path}/Inter-Bold.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: Inter;
font-style: italic;
font-weight: normal;
src:
url('#{config.$font-path}/Inter-Italic.woff2') format('woff2'),
url('#{config.$font-path}/Inter-Italic.woff') format('woff');
src: url('#{config.$font-path}/Inter-Italic.woff2') format('woff2');
}

@font-face {
font-display: swap;
font-family: Inter;
font-style: italic;
font-weight: bold;
src:
url('#{config.$font-path}/Inter-BoldItalic.woff2') format('woff2'),
url('#{config.$font-path}/Inter-BoldItalic.woff') format('woff');
src: url('#{config.$font-path}/Inter-BoldItalic.woff2') format('woff2');
}