mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 10:53:51 +00:00
44 lines
713 B
SCSS
44 lines
713 B
SCSS
@use '@/theme/viewerDefs' as *;
|
|
|
|
.emptyContainer {
|
|
width: 100%;
|
|
text-align: center;
|
|
color: var(--secondary-color-override, $viewer-secondary-color);
|
|
|
|
.empty {
|
|
display: block;
|
|
width: min(100%, 14rem);
|
|
margin: 0 auto -1.5rem;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.text {
|
|
display: block;
|
|
margin-inline: auto;
|
|
font-weight: 400;
|
|
font-size: clamp(1rem, 1.55vw, 1.5rem);
|
|
line-height: 1.35;
|
|
max-width: min(100%, 40rem);
|
|
}
|
|
|
|
&.error {
|
|
color: $error-red;
|
|
|
|
.empty {
|
|
opacity: 0.35;
|
|
filter: grayscale(1);
|
|
}
|
|
|
|
.text {
|
|
margin-top: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.errorIcon {
|
|
display: block;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
margin: -0.125rem auto 0;
|
|
}
|
|
}
|