@livelayer/react 0.10.2 → 0.10.4
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/index.d.ts +9 -0
- package/dist/index.js +3 -3
- package/dist/index.mjs +587 -584
- package/dist/styles.css +9 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -743,6 +743,15 @@
|
|
|
743
743
|
.ll-expanded__header-actions {
|
|
744
744
|
display: flex;
|
|
745
745
|
gap: 6px;
|
|
746
|
+
/* Always pin to the right edge of the topbar / idle header. The
|
|
747
|
+
active-state topbar uses justify-content: space-between, which
|
|
748
|
+
puts a SINGLE child at the start (left) — that happened in
|
|
749
|
+
chromeless mode where the left-side pills are hidden, leaving
|
|
750
|
+
header-actions as the only child. The X jumped from right
|
|
751
|
+
(idle, two children) to left (active+chromeless, one child)
|
|
752
|
+
between sessions. margin-left:auto pushes it to the right
|
|
753
|
+
regardless of how many siblings exist. */
|
|
754
|
+
margin-left: auto;
|
|
746
755
|
}
|
|
747
756
|
|
|
748
757
|
/* ── Active top bar (pills) ─────────────────────────────────── */
|
package/package.json
CHANGED