Making appbar position relative so we can use absolute positioned elements easier.

This commit is contained in:
Matt Mo 2020-12-12 13:27:13 -08:00
parent 0308b235c0
commit 420d4e508b

View File

@ -10,6 +10,7 @@ class AppBar extends IgniteElement {
get styles() { get styles() {
return /*css*/` return /*css*/`
mt-app-bar { mt-app-bar {
position: relative;
background-color: #fff; background-color: #fff;
padding: 0.8em; padding: 0.8em;
display: flex; display: flex;
@ -41,9 +42,7 @@ class AppBar extends IgniteElement {
render() { render() {
return this.template return this.template
.class(this.placement) .class(this.placement)
.child( .child(new slot(this));
new slot(this)
);
} }
ready() { ready() {