@livelayer/react 0.22.1 → 0.23.0
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 +1113 -1074
- package/dist/styles.css +11 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -731,6 +731,17 @@
|
|
|
731
731
|
font-family: inherit;
|
|
732
732
|
}
|
|
733
733
|
|
|
734
|
+
/* Connecting / warming overlay — must FULLY hide the static portrait
|
|
735
|
+
behind it until the live, talking avatar is revealed. The base 0.35
|
|
736
|
+
scrim let a sharp still bleed through, so during boot the visitor saw a
|
|
737
|
+
frozen, background-less portrait ("we're looking at a still image").
|
|
738
|
+
Near-opaque + strong blur so nothing shows until the agent speaks. */
|
|
739
|
+
.ll-expanded__overlay--connecting {
|
|
740
|
+
background: rgba(13, 13, 13, 0.94);
|
|
741
|
+
-webkit-backdrop-filter: blur(18px);
|
|
742
|
+
backdrop-filter: blur(18px);
|
|
743
|
+
}
|
|
744
|
+
|
|
734
745
|
.ll-expanded__overlay--gesture {
|
|
735
746
|
cursor: pointer;
|
|
736
747
|
background: rgba(0, 0, 0, 0.5);
|