@livelayer/react 0.2.6 → 0.4.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/README.md +346 -26
- package/dist/index.d.ts +256 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +1834 -1040
- package/dist/styles.css +31 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1101,6 +1101,37 @@
|
|
|
1101
1101
|
background: rgba(255, 255, 255, 0.3);
|
|
1102
1102
|
}
|
|
1103
1103
|
|
|
1104
|
+
/* ── Idle bottom CTA (mirrors play button copy) ─────────── */
|
|
1105
|
+
|
|
1106
|
+
.ll-expanded__cta {
|
|
1107
|
+
display: block;
|
|
1108
|
+
width: 100%;
|
|
1109
|
+
padding: 12px 16px;
|
|
1110
|
+
border-radius: 12px;
|
|
1111
|
+
background: rgba(255, 255, 255, 0.95);
|
|
1112
|
+
color: #0d0d0d;
|
|
1113
|
+
font-family: inherit;
|
|
1114
|
+
font-size: 14px;
|
|
1115
|
+
font-weight: 600;
|
|
1116
|
+
letter-spacing: -0.15px;
|
|
1117
|
+
cursor: pointer;
|
|
1118
|
+
transition: background 0.15s ease;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.ll-expanded__cta:hover {
|
|
1122
|
+
background: #fff;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.ll-expanded__cta-sublabel {
|
|
1126
|
+
margin: 0 0 4px;
|
|
1127
|
+
font-size: 12px;
|
|
1128
|
+
font-weight: 500;
|
|
1129
|
+
color: rgba(255, 255, 255, 0.75);
|
|
1130
|
+
letter-spacing: -0.15px;
|
|
1131
|
+
text-align: center;
|
|
1132
|
+
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1104
1135
|
/* ── End conversation (small secondary button) ──────────── */
|
|
1105
1136
|
|
|
1106
1137
|
.ll-expanded__end {
|
package/package.json
CHANGED