@agent-link/server 0.1.136 → 0.1.137
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 +6 -1
package/package.json
CHANGED
package/web/style.css
CHANGED
|
@@ -3539,11 +3539,16 @@ body {
|
|
|
3539
3539
|
.sidebar-teams {
|
|
3540
3540
|
padding: 0.75rem;
|
|
3541
3541
|
max-height: 35%;
|
|
3542
|
-
overflow
|
|
3542
|
+
overflow: hidden;
|
|
3543
3543
|
flex-shrink: 0;
|
|
3544
|
+
display: flex;
|
|
3545
|
+
flex-direction: column;
|
|
3544
3546
|
}
|
|
3545
3547
|
|
|
3546
3548
|
.team-history-list {
|
|
3549
|
+
flex: 1 1 auto;
|
|
3550
|
+
overflow-y: auto;
|
|
3551
|
+
min-height: 0;
|
|
3547
3552
|
display: flex;
|
|
3548
3553
|
flex-direction: column;
|
|
3549
3554
|
gap: 2px;
|