stellar-drive 1.2.34 → 1.2.35

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.
@@ -206,7 +206,7 @@ function generatePackageJson(opts) {
206
206
  },
207
207
  dependencies: {
208
208
  postgres: '^3.4.0',
209
- 'stellar-drive': '^1.2.34'
209
+ 'stellar-drive': '^1.2.35'
210
210
  },
211
211
  type: 'module'
212
212
  }, null, 2) + '\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stellar-drive",
3
- "version": "1.2.34",
3
+ "version": "1.2.35",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -7,7 +7,7 @@
7
7
  - Desktop: pill-shaped, centered, positioned below the 64px top nav
8
8
  (accounts for safe-area-inset-top on notch/island devices).
9
9
  - Mobile: pill-shaped, left/right 1rem inset, positioned below the island-header
10
- (env(safe-area-inset-top) * 2 + 24px + 0.5rem breathing room).
10
+ (env(safe-area-inset-top) * 1 + 24px + 1rem breathing room).
11
11
  - Only renders when `$isOnline` is `false`.
12
12
  - No dismiss button — auto-hides on reconnect.
13
13
  - Black glass morphism matching DemoBanner style.
@@ -72,11 +72,11 @@
72
72
  }
73
73
 
74
74
  /* ── Mobile: pill below island-header, matching desktop black glass ──
75
- island-header height = env(safe-area-inset-top) * 2 + 24px.
76
- +0.5rem breathing room so the pill clears the header gradient fade. */
75
+ island-header height = env(safe-area-inset-top) * 1 + 24px.
76
+ + 1rem breathing room so the pill clears the header gradient fade. */
77
77
  @media (max-width: 767px) {
78
78
  .offline-banner {
79
- top: calc(env(safe-area-inset-top, 47px) * 2 + 24px + 0.5rem);
79
+ top: calc(env(safe-area-inset-top, 47px) * 1 + 24px + 1rem);
80
80
  left: 1rem;
81
81
  right: 1rem;
82
82
  transform: none;