17 lines
306 B
CSS
17 lines
306 B
CSS
/* Component – Empty state */
|
||
|
||
.empty-state {
|
||
background: var(--bg-surface);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius);
|
||
border-style: dashed;
|
||
padding: 3rem;
|
||
text-align: center;
|
||
color: var(--text-muted);
|
||
}
|
||
|
||
.empty-state p {
|
||
margin-top: 0.5rem;
|
||
font-size: 0.875rem;
|
||
}
|