@livelayer/react 0.9.0 → 0.9.2

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/styles.css CHANGED
@@ -1477,9 +1477,18 @@
1477
1477
 
1478
1478
  /* ── Compact toolbar (3-button) ────────────────────────────
1479
1479
  Used when compactControls=true. Renders mic | ••• | end-call,
1480
- with secondary controls tucked behind the OverflowPopover. */
1480
+ with secondary controls tucked behind the OverflowPopover.
1481
+
1482
+ Sized to fit a 140px-wide slot: the parent .ll-expanded__bottom
1483
+ has 12px insets on each side (116px usable). Three 40px buttons
1484
+ need 120px + gaps, so we bleed past the inset with negative
1485
+ margins and tighten the gap. flex-wrap:nowrap is critical —
1486
+ without it the mic stacks above the ••• and end-call. */
1481
1487
  .ll-toolbar--compact {
1482
- gap: 12px; /* roomier than the standard toolbar's 4px since only 3 buttons */
1488
+ gap: 6px;
1489
+ flex-wrap: nowrap;
1490
+ margin-left: -8px;
1491
+ margin-right: -8px;
1483
1492
  }
1484
1493
 
1485
1494
  /* ── Overflow popover items: language pill ─────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livelayer/react",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "LiveLayer agent widget for React — avatar video, team switching, responsive layouts, full-fidelity embed",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",