@geomak/ui 6.10.0 → 6.11.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.cjs +342 -222
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +43 -1
- package/dist/index.d.ts +43 -1
- package/dist/index.js +149 -30
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -813,6 +813,9 @@ video {
|
|
|
813
813
|
.bottom-0 {
|
|
814
814
|
bottom: 0px;
|
|
815
815
|
}
|
|
816
|
+
.bottom-1 {
|
|
817
|
+
bottom: 0.25rem;
|
|
818
|
+
}
|
|
816
819
|
.bottom-1\.5 {
|
|
817
820
|
bottom: 0.375rem;
|
|
818
821
|
}
|
|
@@ -2581,6 +2584,9 @@ video {
|
|
|
2581
2584
|
.hover\:bg-surface-raised:hover {
|
|
2582
2585
|
background-color: var(--color-surface-raised);
|
|
2583
2586
|
}
|
|
2587
|
+
.hover\:bg-transparent:hover {
|
|
2588
|
+
background-color: rgba(255, 255, 255, .0);
|
|
2589
|
+
}
|
|
2584
2590
|
.hover\:bg-white\/15:hover {
|
|
2585
2591
|
background-color: rgb(255 255 255 / 0.15);
|
|
2586
2592
|
}
|
package/package.json
CHANGED