@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.
- package/package.json +1 -1
- package/web/style.css +8 -5
package/package.json
CHANGED
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
|
-
|
|
57
|
-
|
|
60
|
+
height: 100dvh;
|
|
61
|
+
overflow: hidden;
|
|
58
62
|
overscroll-behavior: none;
|
|
59
63
|
}
|
|
60
64
|
|
|
61
65
|
#app {
|
|
62
|
-
height:
|
|
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:
|
|
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;
|