@agent-link/server 0.1.106 → 0.1.108

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