Added container class property so we can control the classes on the container easier.

This commit is contained in:
Matt Mo 2021-01-10 15:27:18 -08:00
parent 60eb43cd47
commit 595aadd29a

View File

@ -141,6 +141,7 @@ class Drawer extends IgniteElement {
width: "20em", width: "20em",
height: null, height: null,
padding: "1em", padding: "1em",
containerClass: null,
absolute: true absolute: true
}; };
} }
@ -176,6 +177,7 @@ class Drawer extends IgniteElement {
.style("height", this.height) .style("height", this.height)
.style("padding", this.padding) .style("padding", this.padding)
.style("display", this.show, true, value => value ? "flex" : "none") .style("display", this.show, true, value => value ? "flex" : "none")
.class(this.containerClass)
.class("container") .class("container")
.child( .child(
new button() new button()