stellar-drive 1.2.33 → 1.2.34
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/dist/bin/install-pwa.js
CHANGED
package/package.json
CHANGED
|
@@ -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) + 24px + 0.5rem breathing room).
|
|
10
|
+
(env(safe-area-inset-top) * 2 + 24px + 0.5rem 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
|
|
75
|
+
island-header height = env(safe-area-inset-top) * 2 + 24px.
|
|
76
76
|
+0.5rem 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) + 24px + 0.5rem);
|
|
79
|
+
top: calc(env(safe-area-inset-top, 47px) * 2 + 24px + 0.5rem);
|
|
80
80
|
left: 1rem;
|
|
81
81
|
right: 1rem;
|
|
82
82
|
transform: none;
|