web-ui: wave-1 foundation — services/web-ui/src/css/components/empty-state.css
This commit is contained in:
parent
2f3e04cfc3
commit
052a880b0f
1 changed files with 31 additions and 0 deletions
31
services/web-ui/src/css/components/empty-state.css
Normal file
31
services/web-ui/src/css/components/empty-state.css
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
/* 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;
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue