anentrypoint-design 0.0.258 → 0.0.259
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/app-shell.css +2 -2
- package/dist/247420.css +8 -4
- package/dist/247420.js +15 -15
- package/package.json +1 -1
- package/src/components/files-modals.js +1 -1
package/app-shell.css
CHANGED
|
@@ -580,7 +580,7 @@ body.canvas-host { background: transparent !important; }
|
|
|
580
580
|
rows sit on ONE left axis (the old 24/32 padding was authored for the
|
|
581
581
|
pre-padding .panel-wide era and indented the label 16px past its content). */
|
|
582
582
|
padding: var(--space-2) var(--space-3);
|
|
583
|
-
font-size: var(--fs-
|
|
583
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
584
584
|
color: var(--fg-3);
|
|
585
585
|
letter-spacing: var(--tr-caps); text-transform: uppercase;
|
|
586
586
|
}
|
|
@@ -895,7 +895,7 @@ table {
|
|
|
895
895
|
table th {
|
|
896
896
|
text-align: left;
|
|
897
897
|
padding: 12px 16px;
|
|
898
|
-
font-size: var(--fs-
|
|
898
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
899
899
|
color: var(--fg-3); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
900
900
|
background: var(--bg-2);
|
|
901
901
|
}
|
package/dist/247420.css
CHANGED
|
@@ -1086,7 +1086,7 @@
|
|
|
1086
1086
|
rows sit on ONE left axis (the old 24/32 padding was authored for the
|
|
1087
1087
|
pre-padding .panel-wide era and indented the label 16px past its content). */
|
|
1088
1088
|
padding: var(--space-2) var(--space-3);
|
|
1089
|
-
font-size: var(--fs-
|
|
1089
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
1090
1090
|
color: var(--fg-3);
|
|
1091
1091
|
letter-spacing: var(--tr-caps); text-transform: uppercase;
|
|
1092
1092
|
}
|
|
@@ -1401,7 +1401,7 @@
|
|
|
1401
1401
|
.ds-247420 table th {
|
|
1402
1402
|
text-align: left;
|
|
1403
1403
|
padding: 12px 16px;
|
|
1404
|
-
font-size: var(--fs-
|
|
1404
|
+
font-size: var(--fs-tiny); font-weight: 600;
|
|
1405
1405
|
color: var(--fg-3); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
1406
1406
|
background: var(--bg-2);
|
|
1407
1407
|
}
|
|
@@ -9170,15 +9170,19 @@
|
|
|
9170
9170
|
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
|
9171
9171
|
gap: .4em; text-align: center; min-height: 50vh; color: var(--fg-3);
|
|
9172
9172
|
}
|
|
9173
|
-
.ds-247420 .history-empty-title { margin: 0; font-size:
|
|
9173
|
+
.ds-247420 .history-empty-title { margin: 0; font-size: var(--fs-lg); color: var(--fg-2); }
|
|
9174
9174
|
.ds-247420 .history-empty-sub { margin: 0; max-width: 42ch; }
|
|
9175
9175
|
|
|
9176
|
-
/* Settings: two-column on wide screens (backend + agents).
|
|
9176
|
+
/* Settings: two-column on wide screens (backend + agents). Grid gap is the
|
|
9177
|
+
single source of rhythm between stacked Panels here - .panel's own
|
|
9178
|
+
margin-bottom would stack on top of the gap (32px + 24px = 56px, a break
|
|
9179
|
+
used nowhere else), so it's zeroed for direct grid children. */
|
|
9177
9180
|
.ds-247420 .settings-grid {
|
|
9178
9181
|
display: grid; gap: var(--space-4, 16px);
|
|
9179
9182
|
grid-template-columns: minmax(0, 1fr);
|
|
9180
9183
|
align-items: start;
|
|
9181
9184
|
}
|
|
9185
|
+
.ds-247420 .settings-grid > .panel { margin-bottom: 0; }
|
|
9182
9186
|
.ds-247420 .agentgui-main-settings .settings-grid { margin-top: 0; }
|
|
9183
9187
|
|
|
9184
9188
|
/* The kit Chat head computes its own zero-padded count and ignores our sub
|