@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/web/style.css +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-link/server",
3
- "version": "0.1.136",
3
+ "version": "0.1.137",
4
4
  "description": "AgentLink relay server",
5
5
  "license": "MIT",
6
6
  "repository": {
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-y: auto;
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;