Made material drawer work better on iOS.

This commit is contained in:
MattMo 2021-05-05 03:07:08 -07:00
parent b850b82fe7
commit 1eedfe8abb

View File

@ -29,7 +29,7 @@ class Drawer extends IgniteElement {
mt-drawer.left > .container { mt-drawer.left > .container {
left: 0; left: 0;
top: 0; top: 0;
height: 100vh; height: 100%;
} }
mt-drawer.right { mt-drawer.right {
@ -39,19 +39,19 @@ class Drawer extends IgniteElement {
mt-drawer.right > .container { mt-drawer.right > .container {
right: 0; right: 0;
top: 0; top: 0;
height: 100vh; height: 100%;
} }
mt-drawer.top > .container { mt-drawer.top > .container {
top: 0; top: 0;
left: 0; left: 0;
width: 100vw; width: 100%;
} }
mt-drawer.bottom > .container { mt-drawer.bottom > .container {
bottom: 0; bottom: 0;
left: 0; left: 0;
width: 100vw; width: 100%;
} }
mt-drawer > .container { mt-drawer > .container {