Skip to content

Commit

Permalink
fix(chips): incorrect shape custom property names
Browse files Browse the repository at this point in the history
  • Loading branch information
LordKa0S committed May 17, 2023
1 parent 9dc8613 commit 6fa8243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chips/lib/_assist-chip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

:host {
@each $token, $value in $tokens {
--_#{$token}: #{$value};
--_#{$token}: var(--md-assist-chip-#{$token}, #{$value});
}

// Support logical shape properties
Expand Down
2 changes: 1 addition & 1 deletion chips/lib/_suggestion-chip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

:host {
@each $token, $value in $tokens {
--_#{$token}: #{$value};
--_#{$token}: var(--md-suggestion-chip-#{$token}, #{$value});
}

// Support logical shape properties
Expand Down

0 comments on commit 6fa8243

Please sign in to comment.