@agent-link/server 0.1.107 → 0.1.109

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 +5 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-link/server",
3
- "version": "0.1.107",
3
+ "version": "0.1.109",
4
4
  "description": "AgentLink relay server",
5
5
  "license": "MIT",
6
6
  "repository": {
package/web/style.css CHANGED
@@ -50,21 +50,17 @@
50
50
  --code-header-bg: #e9ecef;
51
51
  }
52
52
 
53
- html {
54
- overscroll-behavior: none;
55
- }
56
-
57
53
  body {
58
54
  background-color: var(--bg-primary);
59
55
  color: var(--text-primary);
60
- height: 100dvh;
61
- overflow: hidden;
56
+ min-height: 100vh;
57
+ min-height: 100dvh;
62
58
  overscroll-behavior: none;
63
59
  }
64
60
 
65
61
  #app {
66
- height: 100%;
67
- overflow: hidden;
62
+ position: fixed;
63
+ inset: 0;
68
64
  }
69
65
 
70
66
  /* ── Layout ── */
@@ -1761,7 +1757,7 @@ body {
1761
1757
  color: var(--text-primary);
1762
1758
  padding: 0.4rem 0.6rem;
1763
1759
  font-family: inherit;
1764
- font-size: 0.92rem;
1760
+ font-size: 16px; /* >=16px prevents iOS auto-zoom on focus */
1765
1761
  resize: none;
1766
1762
  outline: none;
1767
1763
  line-height: 1.5;