Skip to content

Commit

Permalink
fix: make the -chip-spacing to be overwrittable #3665
Browse files Browse the repository at this point in the history
  • Loading branch information
magdalenaan authored and Magdalena Angelova committed Jun 24, 2022
1 parent 19f18f2 commit 55c4abd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/bootstrap/scss/chip/_variables.scss
Expand Up @@ -5,7 +5,7 @@
$kendo-chip-border-width: 1px !default;
/// The spacing between the text and the icons of the chip.
/// @group chip
$kendo-chip-spacing: map-get( $spacing, 1 );
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;

/// Horizontal padding of the chip.
/// @group chip
Expand Down
2 changes: 1 addition & 1 deletion packages/classic/scss/chip/_variables.scss
Expand Up @@ -5,7 +5,7 @@
$kendo-chip-border-width: 1px !default;
/// The spacing between the text and the icons of the chip.
/// @group chip
$kendo-chip-spacing: map-get( $spacing, 1 );
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;

/// Horizontal padding of the chip.
/// @group chip
Expand Down
2 changes: 1 addition & 1 deletion packages/default/scss/chip/_variables.scss
Expand Up @@ -5,7 +5,7 @@
$kendo-chip-border-width: 1px !default;
/// The spacing between the text and the icons of the chip.
/// @group chip
$kendo-chip-spacing: map-get( $spacing, 1 );
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;

/// Horizontal padding of the chip.
/// @group chip
Expand Down
2 changes: 1 addition & 1 deletion packages/material/scss/chip/_variables.scss
Expand Up @@ -5,7 +5,7 @@
$kendo-chip-border-width: 1px !default;
/// The spacing between the text and the icons of the chip.
/// @group chip
$kendo-chip-spacing: map-get( $spacing, 1 );
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;

/// Horizontal padding of the chip.
/// @group chip
Expand Down

0 comments on commit 55c4abd

Please sign in to comment.