From 595aadd29a20cba760407d1ae2cf4d8e4fd60311 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Sun, 10 Jan 2021 15:27:18 -0800 Subject: [PATCH] Added container class property so we can control the classes on the container easier. --- drawer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drawer.js b/drawer.js index a602a68..7f6b882 100644 --- a/drawer.js +++ b/drawer.js @@ -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()