Skip to content

Commit 6fa8243

Browse files
committed
fix(chips): incorrect shape custom property names
1 parent 9dc8613 commit 6fa8243

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chips/lib/_assist-chip.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
:host {
3939
@each $token, $value in $tokens {
40-
--_#{$token}: #{$value};
40+
--_#{$token}: var(--md-assist-chip-#{$token}, #{$value});
4141
}
4242

4343
// Support logical shape properties

chips/lib/_suggestion-chip.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
:host {
3939
@each $token, $value in $tokens {
40-
--_#{$token}: #{$value};
40+
--_#{$token}: var(--md-suggestion-chip-#{$token}, #{$value});
4141
}
4242

4343
// Support logical shape properties

0 commit comments

Comments
 (0)