@agent-link/server 0.1.181 → 0.1.182

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": "@agent-link/server",
3
- "version": "0.1.181",
3
+ "version": "0.1.182",
4
4
  "description": "AgentLink relay server",
5
5
  "license": "MIT",
6
6
  "repository": {
package/web/css/base.css CHANGED
@@ -76,7 +76,7 @@ body {
76
76
  display: flex;
77
77
  align-items: center;
78
78
  justify-content: space-between;
79
- padding: 0.5rem 1rem;
79
+ padding: calc(0.5rem + env(safe-area-inset-top, 0px)) 1rem 0.5rem;
80
80
  background: var(--bg-secondary);
81
81
  border-bottom: 1px solid var(--border);
82
82
  flex-shrink: 0;
@@ -44,7 +44,7 @@
44
44
 
45
45
  /* Top bar */
46
46
  .top-bar {
47
- padding: 0 0.75rem;
47
+ padding: env(safe-area-inset-top, 0px) 0.75rem 0;
48
48
  }
49
49
 
50
50
  .agent-label {
@@ -130,7 +130,7 @@
130
130
 
131
131
  /* Input area */
132
132
  .input-area {
133
- padding: 0 0.75rem 0.75rem;
133
+ padding: 0 0.75rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
134
134
  }
135
135
 
136
136
  .input-card {
@@ -279,11 +279,11 @@
279
279
  }
280
280
 
281
281
  .input-area {
282
- padding: 0 0.5rem 0.5rem;
282
+ padding: 0 0.5rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
283
283
  }
284
284
 
285
285
  .top-bar {
286
- padding: 0 0.5rem;
286
+ padding: env(safe-area-inset-top, 0px) 0.5rem 0;
287
287
  }
288
288
 
289
289
  .folder-picker-dialog {