agentgui 1.0.894 → 1.0.895
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/static/css/brand-bible.css +2 -4
- package/static/css/main.css +1 -44
package/package.json
CHANGED
|
@@ -213,8 +213,7 @@ body {
|
|
|
213
213
|
.input-card,
|
|
214
214
|
.cli,
|
|
215
215
|
.panel,
|
|
216
|
-
.kv
|
|
217
|
-
.welcome-agents-grid > * {
|
|
216
|
+
.kv {
|
|
218
217
|
border: 1px solid var(--color-border) !important;
|
|
219
218
|
}
|
|
220
219
|
|
|
@@ -223,8 +222,7 @@ body {
|
|
|
223
222
|
}
|
|
224
223
|
|
|
225
224
|
.sidebar-header h2,
|
|
226
|
-
.header-title
|
|
227
|
-
.welcome-title {
|
|
225
|
+
.header-title {
|
|
228
226
|
font-family: var(--ff-display);
|
|
229
227
|
text-transform: lowercase;
|
|
230
228
|
letter-spacing: -0.02em;
|
package/static/css/main.css
CHANGED
|
@@ -3528,50 +3528,7 @@ html.dark {
|
|
|
3528
3528
|
}
|
|
3529
3529
|
|
|
3530
3530
|
/* ---------- Welcome screen ---------- */
|
|
3531
|
-
.main-panel >
|
|
3532
|
-
display: flex;
|
|
3533
|
-
flex-direction: column;
|
|
3534
|
-
align-items: center;
|
|
3535
|
-
justify-content: center;
|
|
3536
|
-
gap: 0.75rem;
|
|
3537
|
-
padding: 2rem 1.5rem;
|
|
3538
|
-
text-align: center;
|
|
3539
|
-
flex: 1;
|
|
3540
|
-
min-height: 0;
|
|
3541
|
-
overflow-y: auto;
|
|
3542
|
-
}
|
|
3543
|
-
.welcome-logo {
|
|
3544
|
-
width: 72px;
|
|
3545
|
-
height: 72px;
|
|
3546
|
-
border-radius: var(--radius-xl);
|
|
3547
|
-
background: linear-gradient(135deg, #3b82f6, #6366f1);
|
|
3548
|
-
color: #fff;
|
|
3549
|
-
font-size: 2.25rem;
|
|
3550
|
-
font-weight: 700;
|
|
3551
|
-
display: flex;
|
|
3552
|
-
align-items: center;
|
|
3553
|
-
justify-content: center;
|
|
3554
|
-
box-shadow: var(--shadow-md);
|
|
3555
|
-
margin-bottom: 0.5rem;
|
|
3556
|
-
}
|
|
3557
|
-
.welcome-title {
|
|
3558
|
-
font-size: 1.75rem;
|
|
3559
|
-
font-weight: 700;
|
|
3560
|
-
margin: 0;
|
|
3561
|
-
color: var(--color-text-primary);
|
|
3562
|
-
}
|
|
3563
|
-
.welcome-subtitle {
|
|
3564
|
-
font-size: 0.9375rem;
|
|
3565
|
-
color: var(--color-text-secondary);
|
|
3566
|
-
margin: 0 0 1.5rem;
|
|
3567
|
-
}
|
|
3568
|
-
.welcome-agents-grid {
|
|
3569
|
-
display: grid;
|
|
3570
|
-
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
3571
|
-
gap: 0.75rem;
|
|
3572
|
-
width: 100%;
|
|
3573
|
-
max-width: 720px;
|
|
3574
|
-
}
|
|
3531
|
+
.main-panel >
|
|
3575
3532
|
|
|
3576
3533
|
/* Hide welcome when empty / conversation active */
|
|
3577
3534
|
.main-panel > .welcome-screen.hidden { display: none; }
|