-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issues with font names and rendering, add more weights
- Loading branch information
1 parent
44197eb
commit 65bf1ac
Showing
36 changed files
with
84 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "air-light", | ||
"version": "8.2.8", | ||
"version": "8.2.9", | ||
"description": "A minimalist WordPress starter theme.", | ||
"author": "Digitoimisto Dude Oy ([email protected])", | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
// Font family settings for Gutenberg | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/Inter-Regular', 400); | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/Inter-Italic', 400, italic); | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/Inter-Bold', 700); | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/inter-400', 400); | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/inter-400-italic', 400, italic); | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/inter-500', 500); | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/inter-600', 600); | ||
@include fontFace('Inter', '../../../../../content/themes/air-light/fonts/inter-700', 700); | ||
@include fontFace('Whitney', '../../../../../content/themes/air-light/fonts/whitney-500', 500); | ||
@include fontFace('Whitney', '../../../../../content/themes/air-light/fonts/whitney-600', 600); | ||
@include fontFace('Isidora', '../../../../../content/themes/air-light/fonts/isidora-sans-600', 600); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
// Self-hosted fonts | ||
// Remember to add these also to gutenberg/variables/_font-family.scss | ||
// with correct paths | ||
@include fontFace('Inter', '../../fonts/Inter-Regular', 400); | ||
@include fontFace('Inter', '../../fonts/Inter-Italic', 400, italic); | ||
@include fontFace('Inter', '../../fonts/Inter-Bold', 700); | ||
@include fontFace('Inter', '../../fonts/inter-400', 400); | ||
@include fontFace('Inter', '../../fonts/inter-400-italic', 400, italic); | ||
@include fontFace('Inter', '../../fonts/inter-500', 500); | ||
@include fontFace('Inter', '../../fonts/inter-600', 600); | ||
@include fontFace('Inter', '../../fonts/inter-700', 700); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters