static: fix spinner not being on top of elements
This commit is contained in:
parent
e32cbec072
commit
812d699fd6
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -35,6 +35,7 @@ export class AdminSiteShell extends LitElement {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
z-index: 2000;
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
BullseyeStyle,
|
BullseyeStyle,
|
||||||
|
@ -81,7 +82,9 @@ export class AdminSiteShell extends LitElement {
|
||||||
this.loadContent();
|
this.loadContent();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
setTimeout(() => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
}, 100);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue