mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-12 01:30:41 +01:00
29 lines
469 B
TypeScript
29 lines
469 B
TypeScript
import {css} from 'lit';
|
|
|
|
export default css`
|
|
:host {
|
|
display: block;
|
|
position: relative;
|
|
}
|
|
|
|
.template--loading {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 5rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
background-color: var(--sl-panel-background-color);
|
|
color: var(--application-color, var(--primary-color));
|
|
|
|
z-index: var(--sl-z-index-dialog);
|
|
|
|
font-size: 5rem;
|
|
}
|
|
|
|
.template {
|
|
height: 100%;
|
|
}
|
|
`; |