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