claude-teammate 0.1.63 → 0.1.64

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-teammate",
3
- "version": "0.1.63",
3
+ "version": "0.1.64",
4
4
  "description": "CLI bootstrapper for Claude Teammate.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -503,9 +503,15 @@ tr:last-child td { border-bottom:none; }
503
503
  tr:hover td { background:var(--bg); }
504
504
 
505
505
  /* ── Pipeline ── */
506
+ .pipeline-scroll {
507
+ overflow-x: auto;
508
+ }
509
+
506
510
  .pipeline {
507
511
  display:grid;
508
- grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
512
+ grid-auto-flow: column;
513
+ grid-auto-columns: minmax(200px, 1fr);
514
+ min-width: max-content;
509
515
  gap:14px;
510
516
  margin-bottom:4px;
511
517
  }
@@ -1370,8 +1376,10 @@ tr.clickable:hover td { background:var(--sky-bg) !important; }
1370
1376
  </div>
1371
1377
  <button class="btn" onclick="refreshAll()">↻ Refresh</button>
1372
1378
  </div>
1373
- <div class="pipeline" id="pipeline-view">
1374
- <div class="empty"><div class="empty-icon">▸</div><div class="empty-text">Loading…</div></div>
1379
+ <div class="pipeline-scroll">
1380
+ <div class="pipeline" id="pipeline-view">
1381
+ <div class="empty"><div class="empty-icon">▸</div><div class="empty-text">Loading…</div></div>
1382
+ </div>
1375
1383
  </div>
1376
1384
  </div>
1377
1385