26 lines
420 B
SCSS
26 lines
420 B
SCSS
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
|
|
> mat-icon {
|
|
height: 60px;
|
|
width: 60px;
|
|
opacity: 0.1;
|
|
}
|
|
|
|
.heading-l {
|
|
color: var(--iqser-disabled);
|
|
}
|
|
|
|
> .heading-l,
|
|
iqser-icon-button {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.ng-content-wrapper:not(:empty) + .heading-l {
|
|
display: none;
|
|
}
|
|
}
|