egroupware_official/api/js/etemplate/Et2Template/Et2Template.styles.ts
2024-11-13 17:16:47 -07:00

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%;
}
`;