@yemi33/minions 0.1.395 → 0.1.396

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.396 (2026-04-06)
4
+
5
+ ### Fixes
6
+ - prevent body-level scrolling — lock layout to viewport
7
+
3
8
  ## 0.1.395 (2026-04-06)
4
9
 
5
10
  ### Other
@@ -24,7 +24,8 @@
24
24
  --transition-fast: 0.15s; --transition-base: 0.2s; --transition-slow: 0.3s;
25
25
  }
26
26
  * { box-sizing: border-box; margin: 0; padding: 0; }
27
- body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', system-ui, sans-serif; font-size: var(--text-xl); overflow-x: hidden; }
27
+ html, body { height: 100%; margin: 0; overflow: hidden; }
28
+ body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', system-ui, sans-serif; font-size: var(--text-xl); display: flex; flex-direction: column; }
28
29
 
29
30
  header {
30
31
  background: var(--surface); border-bottom: 1px solid var(--border);
@@ -41,7 +42,7 @@
41
42
  section { padding: var(--space-8) var(--space-9); border-bottom: 1px solid var(--border); overflow: hidden; min-width: 0; }
42
43
 
43
44
  /* Sidebar navigation */
44
- .page-layout { display: flex; height: calc(100vh - 44px); overflow: hidden; }
45
+ .page-layout { display: flex; flex: 1; min-height: 0; overflow: hidden; }
45
46
  .sidebar { width: 150px; min-width: 150px; background: var(--surface); border-right: 1px solid var(--border); padding: var(--space-4) 0; overflow-y: auto; position: sticky; top: 0; }
46
47
  .sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; color: var(--muted); text-decoration: none; font-size: var(--text-sm); border-left: 3px solid transparent; transition: all var(--transition-fast); cursor: pointer; position: relative; }
47
48
  .sidebar-link .notif-badge.done { top: 50%; right: 6px; transform: translateY(-50%); width: 6px; height: 6px; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.395",
3
+ "version": "0.1.396",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"