Making appbar position relative so we can use absolute positioned elements easier.
This commit is contained in:
parent
0308b235c0
commit
420d4e508b
@ -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() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user