web: fix loading overlay for site-shell
This commit is contained in:
parent
6bfaf71c12
commit
0632d8ff37
|
@ -8,7 +8,7 @@ import "../elements/sidebar/SidebarHamburger";
|
||||||
|
|
||||||
export abstract class Interface extends LitElement {
|
export abstract class Interface extends LitElement {
|
||||||
@property({type: Boolean})
|
@property({type: Boolean})
|
||||||
sidebarOpen: boolean = true;
|
sidebarOpen = true;
|
||||||
|
|
||||||
abstract get sidebar(): SidebarItem[];
|
abstract get sidebar(): SidebarItem[];
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,12 @@ export class SiteShell extends LitElement {
|
||||||
::slotted(*) {
|
::slotted(*) {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
.pf-l-bullseye {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
BackdropStyle,
|
BackdropStyle,
|
||||||
BullseyeStyle,
|
BullseyeStyle,
|
||||||
|
|
Reference in New Issue