@livelayer/react 0.23.3 → 0.23.5
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.js +3 -3
- package/dist/index.mjs +1360 -1321
- package/dist/styles.css +14 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1317,6 +1317,20 @@
|
|
|
1317
1317
|
border-color: rgba(255, 140, 140, 0.7);
|
|
1318
1318
|
}
|
|
1319
1319
|
|
|
1320
|
+
/* Compact (mobile) 3-button toolbar: mic · ••• · End. The base .ll-toolbar
|
|
1321
|
+
packs 5 controls centered with a tight 2px gap, and .ll-tool--danger adds
|
|
1322
|
+
margin-left:6px to separate End from the media cluster. In this 3-button row
|
|
1323
|
+
that asymmetric margin pushed End ~8px right while the others sat 2px apart,
|
|
1324
|
+
knocking ••• off-center and leaving an outsized gap before End. Distribute
|
|
1325
|
+
the three evenly across the row and drop the margin so they're balanced.
|
|
1326
|
+
(Same component renders on the marketing site, so this fixes both.) */
|
|
1327
|
+
.ll-toolbar--compact {
|
|
1328
|
+
justify-content: space-evenly;
|
|
1329
|
+
}
|
|
1330
|
+
.ll-toolbar--compact .ll-tool--danger {
|
|
1331
|
+
margin-left: 0;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1320
1334
|
/* Split button: left = toggle, right = device menu */
|
|
1321
1335
|
.ll-tool-split {
|
|
1322
1336
|
position: relative;
|