This commit is contained in:
2025-07-14 15:11:47 +00:00
parent efd142d63d
commit 66493f793f
3 changed files with 48 additions and 9 deletions

View File

@@ -246,10 +246,20 @@ export class SioConversationView extends DeesElement {
align-items: center;
justify-content: center;
flex-direction: column;
gap: ${unsafeCSS(spacing[4])};
gap: ${unsafeCSS(spacing["4"])};
padding: ${unsafeCSS(spacing["8"])};
text-align: center;
color: ${bdTheme('mutedForeground')};
animation: fadeIn 500ms ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.empty-icon {