Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Binary file added fonts/Inter-Medium.woff
Binary file not shown.
Binary file added fonts/Inter-Regular.woff
Binary file not shown.
Binary file removed fonts/Inter-UI-Medium.woff
Binary file not shown.
Binary file removed fonts/Inter-UI-Regular.woff
Binary file not shown.
10 changes: 5 additions & 5 deletions src/marketing/support/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ $marketing-font-path: "/primer-marketing-support/fonts/" !default;

// Type
@font-face {
font-family: InterUI;
font-family: Inter;
font-style: normal;
font-weight: $font-weight-normal;
src: local("InterUI"), local("InterUI-Regular"), url("#{$marketing-font-path}Inter-UI-Regular.woff") format("woff");
src: local("Inter"), local("Inter-Regular"), url("#{$marketing-font-path}Inter-UI-Regular.woff") format("woff");
}

@font-face {
font-family: InterUI;
font-family: Inter;
font-style: normal;
font-weight: $font-weight-semibold;
src: local("InterUI Medium"), local("InterUI-Medium"), url("#{$marketing-font-path}Inter-UI-Medium.woff") format("woff");
src: local("Inter Medium"), local("Inter-Medium"), url("#{$marketing-font-path}Inter-UI-Medium.woff") format("woff");
}

$font-mktg: InterUI, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$font-mktg: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;

// Builds upon primer-support/variables/typography.scss
$h000-size: 64px !default;
Expand Down