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%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2000;
|
||||
}
|
||||
`,
|
||||
BullseyeStyle,
|
||||
|
@ -81,7 +82,9 @@ export class AdminSiteShell extends LitElement {
|
|||
this.loadContent();
|
||||
});
|
||||
});
|
||||
this.loading = false;
|
||||
setTimeout(() => {
|
||||
this.loading = false;
|
||||
}, 100);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Reference in New Issue