static: fix spinner not being on top of elements

This commit is contained in:
Jens Langhammer 2020-11-21 21:04:32 +01:00
parent e32cbec072
commit 812d699fd6
3 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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();
}); });
}); });
this.loading = false; setTimeout(() => {
this.loading = false;
}, 100);
}); });
} }