Initial commit: OmniAI Web Frontend

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 12:38:01 +08:00
commit bedee3ba8d
183 changed files with 94805 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
.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);
}