From d89d2638fb2c590d67b52f36713cb9e7f2307f7e Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Fri, 13 Nov 2020 14:44:31 -0800 Subject: [PATCH] Fixed some styling issues with chips and made them use the color property for the close button color. --- chip.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/chip.js b/chip.js index c1fadc5..f1610f1 100644 --- a/chip.js +++ b/chip.js @@ -42,8 +42,11 @@ class Chip extends IgniteElement { .child( new slot(this), new button() - .class("btn ml-1 p-0") - .child(``) + .class("btn ml-2 p-0") + .child(``) + .style("color", this.color) + .style("line-height", "1") + .style("border", "none") .onClick(() => this.onDelete()) ); }