Skip to content

Commit

Permalink
fix(bootstrap): headings font-families don't provide fallback values
Browse files Browse the repository at this point in the history
  • Loading branch information
inikolova committed Nov 20, 2024
1 parent 7e81c25 commit 2ff3a4a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/bootstrap/scss/typography/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@ $kendo-h6-font-size: $kendo-font-size !default;

/// The font family of the highest level heading.
/// @group typography
$kendo-h1-font-family: null !default;
$kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the second highest level heading.
/// @group typography
$kendo-h2-font-family: null !default;
$kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the third highest level heading.
/// @group typography
$kendo-h3-font-family: null !default;
$kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the fourth highest level heading.
/// @group typography
$kendo-h4-font-family: null !default;
$kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the fifth highest level heading.
/// @group typography
$kendo-h5-font-family: null !default;
$kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the sixth highest level heading.
/// @group typography
$kendo-h6-font-family: null !default;
$kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;

/// The line height of the highest level heading.
/// @group typography
Expand Down Expand Up @@ -258,16 +258,16 @@ $kendo-display4-font-size: calc( #{$kendo-font-size} * 3.5 ) !default;

/// The font family of the largest display text.
/// @group typography
$kendo-display1-font-family: unset !default;
$kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the second largest display text.
/// @group typography
$kendo-display2-font-family: unset !default;
$kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the third largest display text.
/// @group typography
$kendo-display3-font-family: unset !default;
$kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
/// The font family of the fourth largest display text.
/// @group typography
$kendo-display4-font-family: unset !default;
$kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;

/// The line height of the largest display text.
/// @group typography
Expand Down

0 comments on commit 2ff3a4a

Please sign in to comment.