Skip to content

Commit

Permalink
Add $display-font-family and $display-font-style (#36711)
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond committed Jul 11, 2022
1 parent ac654a0 commit a122448
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scss/_type.scss
Expand Up @@ -35,6 +35,8 @@
@each $display, $font-size in $display-font-sizes {
.display-#{$display} {
@include font-size($font-size);
font-family: $display-font-family;
font-style: $display-font-style;
font-weight: $display-font-weight;
line-height: $display-line-height;
}
Expand Down
2 changes: 2 additions & 0 deletions scss/_variables.scss
Expand Up @@ -604,6 +604,8 @@ $display-font-sizes: (
6: 2.5rem
) !default;

$display-font-family: null !default;
$display-font-style: null !default;
$display-font-weight: 300 !default;
$display-line-height: $headings-line-height !default;
// scss-docs-end display-headings
Expand Down
2 changes: 2 additions & 0 deletions site/content/docs/5.2/content/typography.md
Expand Up @@ -88,6 +88,8 @@ Traditional heading elements are designed to work best in the meat of your page

Display headings are configured via the `$display-font-sizes` Sass map and two variables, `$display-font-weight` and `$display-line-height`.

Display headings are customizable via two variables, `$display-font-family` and `$display-font-style`.

{{< scss-docs name="display-headings" file="scss/_variables.scss" >}}

## Lead
Expand Down

0 comments on commit a122448

Please sign in to comment.