mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [AAE-6823] Customize font * [AAE-6823] Update css variables names * [AAE-6823] Cleaning * [AAE-6823] Update css variables names * [AAE-6823] Fix lint error
40 lines
889 B
SCSS
40 lines
889 B
SCSS
.adf-empty-content {
|
|
color: var(--theme-text-color);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
&__icon {
|
|
.mat-icon {
|
|
font-size: var(--theme-display-3-font-size);
|
|
height: var(--theme-display-3-font-size) !important;
|
|
width: var(--theme-display-3-font-size) !important;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
font-size: var(--theme-adf-task-title-font-size);
|
|
font-weight: 600;
|
|
line-height: 0;
|
|
white-space: normal;
|
|
text-align: center;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
&__subtitle,
|
|
&__text {
|
|
font-size: var(--theme-body-1-font-size);
|
|
font-weight: 300;
|
|
line-height: inherit;
|
|
white-space: normal;
|
|
text-align: center;
|
|
}
|
|
|
|
.adf-icon {
|
|
opacity: 0.6;
|
|
}
|
|
}
|