Skip to content

Commit

Permalink
fix(cart): empty color will not add a css class
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch88 committed Oct 18, 2022
1 parent b1285cc commit e69b4a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/components/bal-card/bal-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class BalCard {
<Host
class={{
'bal-card': true,
[`bal-card--${this.colorTypeClass}`]: true,
[`bal-card--${this.colorTypeClass}`]: !isEmpty(this.color),
[`bal-card--is-${this.space}`]: this.space !== '',
'bal-card--has-border': this.border,
'bal-card--is-flat': this.flat,
Expand Down

0 comments on commit e69b4a3

Please sign in to comment.