File size: 758 Bytes
9308228 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | .dw-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: var(--space-12) var(--space-6);
color: var(--color-text-secondary);
}
.dw-empty__icon {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: var(--radius-lg);
background: var(--color-surface-hover);
color: var(--color-text-muted);
margin-bottom: var(--space-4);
}
.dw-empty__title {
font-size: var(--text-lg);
color: var(--color-text-primary);
}
.dw-empty__description {
margin-top: var(--space-2);
font-size: var(--text-sm);
max-width: 420px;
line-height: var(--leading-normal);
}
.dw-empty__action {
margin-top: var(--space-5);
}
|