2024-03-11 12:25:52 +01:00

46 lines
814 B
SCSS

@use "theme/globals" as *;
:host {
--image-size: 80px;
--icon-color: var(--core-empty-box-icon-color);
&.core-empty-box-clickable {
z-index: 0;
}
&.dimmed {
--text-color: var(--gray-700);
}
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 1;
color: var(--text-color);
margin: 0 auto;
text-align: center;
padding: 16px;
height: 100%;
ion-icon {
font-size: var(--image-size);
color: var(--icon-color);
}
img {
height: var(--image-size);
}
p,
::ng-deep p {
font-size: var(--heading-6-font-size);
color: var(--text-color);
}
}
:host-context(html.dark) {
&.dimmed {
--text-color: var(--gray-300);
}
}