@agent-link/server 0.1.109 → 0.1.110
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/web/style.css +18 -7
package/package.json
CHANGED
package/web/style.css
CHANGED
|
@@ -50,17 +50,18 @@
|
|
|
50
50
|
--code-header-bg: #e9ecef;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
+
html {
|
|
54
|
+
height: 100%;
|
|
55
|
+
}
|
|
56
|
+
|
|
53
57
|
body {
|
|
54
58
|
background-color: var(--bg-primary);
|
|
55
59
|
color: var(--text-primary);
|
|
56
|
-
|
|
57
|
-
min-height: 100dvh;
|
|
58
|
-
overscroll-behavior: none;
|
|
60
|
+
height: 100%;
|
|
59
61
|
}
|
|
60
62
|
|
|
61
63
|
#app {
|
|
62
|
-
|
|
63
|
-
inset: 0;
|
|
64
|
+
height: 100%;
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
/* ── Layout ── */
|
|
@@ -157,6 +158,7 @@ body {
|
|
|
157
158
|
align-items: center;
|
|
158
159
|
justify-content: center;
|
|
159
160
|
padding: 2rem;
|
|
161
|
+
min-height: 0;
|
|
160
162
|
}
|
|
161
163
|
|
|
162
164
|
.status-card {
|
|
@@ -365,6 +367,7 @@ body {
|
|
|
365
367
|
display: flex;
|
|
366
368
|
flex-direction: column;
|
|
367
369
|
overflow: hidden;
|
|
370
|
+
min-height: 0;
|
|
368
371
|
}
|
|
369
372
|
|
|
370
373
|
.sidebar-version-footer {
|
|
@@ -460,11 +463,15 @@ body {
|
|
|
460
463
|
}
|
|
461
464
|
|
|
462
465
|
.session-list {
|
|
463
|
-
flex: 1;
|
|
466
|
+
flex: 1 1 auto;
|
|
464
467
|
overflow-y: auto;
|
|
468
|
+
min-height: 0;
|
|
469
|
+
overscroll-behavior: contain;
|
|
465
470
|
display: flex;
|
|
466
471
|
flex-direction: column;
|
|
467
472
|
gap: 2px;
|
|
473
|
+
min-height: 0;
|
|
474
|
+
overscroll-behavior: contain;
|
|
468
475
|
}
|
|
469
476
|
|
|
470
477
|
.session-group {
|
|
@@ -781,12 +788,16 @@ body {
|
|
|
781
788
|
|
|
782
789
|
/* ── Message list ── */
|
|
783
790
|
.message-list {
|
|
784
|
-
flex: 1;
|
|
791
|
+
flex: 1 1 auto;
|
|
785
792
|
overflow-y: auto;
|
|
793
|
+
min-height: 0;
|
|
794
|
+
overscroll-behavior: contain;
|
|
786
795
|
padding: 1.5rem 1.5rem 1rem;
|
|
787
796
|
display: flex;
|
|
788
797
|
flex-direction: column;
|
|
789
798
|
gap: 0.25rem;
|
|
799
|
+
min-height: 0;
|
|
800
|
+
overscroll-behavior: contain;
|
|
790
801
|
}
|
|
791
802
|
|
|
792
803
|
.message-list-inner {
|