analytica-frontend-lib 1.1.10 → 1.1.12
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/VideoPlayer/index.js +367 -183
- package/dist/VideoPlayer/index.js.map +1 -1
- package/dist/VideoPlayer/index.mjs +373 -184
- package/dist/VideoPlayer/index.mjs.map +1 -1
- package/dist/index.css +10 -3
- package/dist/index.css.map +1 -1
- package/dist/index.js +367 -183
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +373 -184
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +10 -3
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -706,9 +706,6 @@
|
|
|
706
706
|
.ml-4 {
|
|
707
707
|
margin-left: calc(var(--spacing) * 4);
|
|
708
708
|
}
|
|
709
|
-
.ml-auto {
|
|
710
|
-
margin-left: auto;
|
|
711
|
-
}
|
|
712
709
|
.box-border {
|
|
713
710
|
box-sizing: border-box;
|
|
714
711
|
}
|
|
@@ -1242,6 +1239,9 @@
|
|
|
1242
1239
|
.cursor-default {
|
|
1243
1240
|
cursor: default;
|
|
1244
1241
|
}
|
|
1242
|
+
.cursor-none {
|
|
1243
|
+
cursor: none;
|
|
1244
|
+
}
|
|
1245
1245
|
.cursor-not-allowed {
|
|
1246
1246
|
cursor: not-allowed;
|
|
1247
1247
|
}
|
|
@@ -3738,6 +3738,13 @@
|
|
|
3738
3738
|
padding-inline: calc(var(--spacing) * 6);
|
|
3739
3739
|
}
|
|
3740
3740
|
}
|
|
3741
|
+
.group-hover\:cursor-default {
|
|
3742
|
+
&:is(:where(.group):hover *) {
|
|
3743
|
+
@media (hover: hover) {
|
|
3744
|
+
cursor: default;
|
|
3745
|
+
}
|
|
3746
|
+
}
|
|
3747
|
+
}
|
|
3741
3748
|
.group-hover\:text-primary-950 {
|
|
3742
3749
|
&:is(:where(.group):hover *) {
|
|
3743
3750
|
@media (hover: hover) {
|