feat(ui): add Agents dashboard

This commit is contained in:
Gustavo Madeira Santana
2026-02-02 21:31:17 -05:00
parent c8af8e9555
commit 2a68bcbeb3
32 changed files with 3652 additions and 21 deletions
+16 -4
View File
@@ -62,7 +62,10 @@
.shell--chat-focus .content {
padding-top: 0;
gap: 0;
}
.shell--chat-focus .content > * + * {
margin-top: 0;
}
/* ===========================================
@@ -418,23 +421,32 @@
.content {
grid-area: content;
padding: 12px 16px 32px;
display: flex;
flex-direction: column;
gap: 24px;
display: block;
min-height: 0;
overflow-y: auto;
overflow-x: hidden;
}
.content > * + * {
margin-top: 24px;
}
:root[data-theme="light"] .content {
background: var(--bg-content);
}
.content--chat {
display: flex;
flex-direction: column;
gap: 24px;
overflow: hidden;
padding-bottom: 0;
}
.content--chat > * + * {
margin-top: 0;
}
/* Content header */
.content-header {
display: flex;