Skip to content

Commit

Permalink
fix(list): missing font-family property
Browse files Browse the repository at this point in the history
  • Loading branch information
JoomFX authored and Juveniel committed May 2, 2023
1 parent fc69dac commit 92cb702
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/bootstrap/scss/list/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// List

/// The font family of the List components.
/// @group list
$kendo-list-font-family: $kendo-font-family !default;

/// The font size of the List component, if no size is set.
/// @group list
$kendo-list-font-size: null !default;
Expand Down
4 changes: 4 additions & 0 deletions packages/classic/scss/list/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// List

/// The font family of the List components.
/// @group list
$kendo-list-font-family: $kendo-font-family !default;

/// The font size of the List component, if no size is set.
/// @group list
$kendo-list-font-size: null !default;
Expand Down
1 change: 1 addition & 0 deletions packages/default/scss/list/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: $kendo-list-font-family;
font-size: $kendo-list-font-size;
line-height: $kendo-list-line-height;
display: flex;
Expand Down
4 changes: 4 additions & 0 deletions packages/default/scss/list/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// List

/// The font family of the List components.
/// @group list
$kendo-list-font-family: $kendo-font-family !default;

/// The font size of the List component, if no size is set.
/// @group list
$kendo-list-font-size: null !default;
Expand Down
1 change: 1 addition & 0 deletions packages/fluent/scss/list/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: var( --kendo-list-font-family, #{$kendo-list-font-family} );
font-size: var( --INTERNAL--kendo-list-font-size, 1rem );
line-height: var( --INTERNAL--kendo-list-line-height, normal );
display: flex;
Expand Down
4 changes: 4 additions & 0 deletions packages/fluent/scss/list/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
@use "sass:map";
@use "../core/" as *;

/// The font family of the List components.
/// @group list
$kendo-list-font-family: var( --kendo-font-family, inherit) !default;

/// The font size of the List component.
/// @group list
$kendo-list-sm-font-size: var( --kendo-font-size, inherit ) !default;
Expand Down
4 changes: 4 additions & 0 deletions packages/material/scss/list/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// List

/// The font family of the List components.
/// @group list
$kendo-list-font-family: $kendo-font-family !default;

/// The font size of the List component, if no size is set.
/// @group list
$kendo-list-font-size: null !default;
Expand Down

0 comments on commit 92cb702

Please sign in to comment.