Working on simplifying drawer component.

This commit is contained in:
MattMo 2023-04-12 12:00:27 -07:00
parent 5f909f08e9
commit 85662f7777

View File

@ -19,10 +19,6 @@ class Drawer extends IgniteElement {
background-color: #f8f9fa;
}
mt-drawer.absolute > .container {
position: absolute;
}
mt-drawer.left {
order: 0;
}
@ -124,7 +120,7 @@ class Drawer extends IgniteElement {
get properties() {
return {
show: false,
show: true,
showToggleButton: true,
responsive: new IgniteProperty(true, (oldValue, value) => {
//If responsive is false and mobile is true, set mobile to false.
@ -142,8 +138,7 @@ class Drawer extends IgniteElement {
width: "20em",
height: null,
padding: "1em",
containerClass: null,
absolute: true
containerClass: null
};
}