Added container class property so we can control the classes on the container easier.
This commit is contained in:
parent
60eb43cd47
commit
595aadd29a
@ -141,6 +141,7 @@ class Drawer extends IgniteElement {
|
||||
width: "20em",
|
||||
height: null,
|
||||
padding: "1em",
|
||||
containerClass: null,
|
||||
absolute: true
|
||||
};
|
||||
}
|
||||
@ -176,6 +177,7 @@ class Drawer extends IgniteElement {
|
||||
.style("height", this.height)
|
||||
.style("padding", this.padding)
|
||||
.style("display", this.show, true, value => value ? "flex" : "none")
|
||||
.class(this.containerClass)
|
||||
.class("container")
|
||||
.child(
|
||||
new button()
|
||||
|
Loading…
x
Reference in New Issue
Block a user