32 lines
603 B
CSS
32 lines
603 B
CSS
|
|
/* empty-state.css ─ centered icon + title + body + CTA, no card chrome */
|
||
|
|
|
||
|
|
.wd-empty {
|
||
|
|
min-height: 360px;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 12px;
|
||
|
|
text-align: center;
|
||
|
|
padding: 48px 24px;
|
||
|
|
}
|
||
|
|
.wd-empty-icon {
|
||
|
|
width: 28px;
|
||
|
|
height: 28px;
|
||
|
|
color: var(--text-tertiary);
|
||
|
|
}
|
||
|
|
.wd-empty-title {
|
||
|
|
font: 600 14px/1.3 var(--font);
|
||
|
|
color: var(--text-primary);
|
||
|
|
}
|
||
|
|
.wd-empty-body {
|
||
|
|
font: 400 13px/1.5 var(--font);
|
||
|
|
color: var(--text-secondary);
|
||
|
|
max-width: 360px;
|
||
|
|
}
|
||
|
|
.wd-empty-actions {
|
||
|
|
display: flex;
|
||
|
|
gap: 8px;
|
||
|
|
margin-top: 4px;
|
||
|
|
}
|