bedee3ba8d
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
51 lines
891 B
CSS
51 lines
891 B
CSS
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 12px;
|
|
padding: 48px 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.empty-state__illustration {
|
|
color: var(--fg-soft, #888);
|
|
margin-bottom: 8px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.empty-state__title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: var(--fg-body, #e0e0e0);
|
|
}
|
|
|
|
.empty-state__desc {
|
|
font-size: 13px;
|
|
color: var(--fg-soft, #888);
|
|
max-width: 280px;
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.empty-state__action {
|
|
margin-top: 8px;
|
|
padding: 8px 20px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
background: var(--accent, #0d9488);
|
|
color: #fff;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: background 0.15s, transform 0.1s;
|
|
}
|
|
|
|
.empty-state__action:hover {
|
|
background: var(--accent-hover, #0f766e);
|
|
}
|
|
|
|
.empty-state__action:active {
|
|
transform: scale(0.97);
|
|
}
|