@geomak/ui 6.10.0 → 6.12.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 +424 -228
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +106 -1
- package/dist/index.d.ts +106 -1
- package/dist/index.js +230 -36
- package/dist/index.js.map +1 -1
- package/dist/styles.css +14 -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
|
}
|
|
@@ -1714,6 +1717,11 @@ video {
|
|
|
1714
1717
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1715
1718
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1716
1719
|
}
|
|
1720
|
+
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1721
|
+
--tw-space-y-reverse: 0;
|
|
1722
|
+
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1723
|
+
margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
|
|
1724
|
+
}
|
|
1717
1725
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1718
1726
|
--tw-space-y-reverse: 0;
|
|
1719
1727
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -2013,6 +2021,9 @@ video {
|
|
|
2013
2021
|
.p-6 {
|
|
2014
2022
|
padding: 1.5rem;
|
|
2015
2023
|
}
|
|
2024
|
+
.p-8 {
|
|
2025
|
+
padding: 2rem;
|
|
2026
|
+
}
|
|
2016
2027
|
.px-1 {
|
|
2017
2028
|
padding-left: 0.25rem;
|
|
2018
2029
|
padding-right: 0.25rem;
|
|
@@ -2581,6 +2592,9 @@ video {
|
|
|
2581
2592
|
.hover\:bg-surface-raised:hover {
|
|
2582
2593
|
background-color: var(--color-surface-raised);
|
|
2583
2594
|
}
|
|
2595
|
+
.hover\:bg-transparent:hover {
|
|
2596
|
+
background-color: rgba(255, 255, 255, .0);
|
|
2597
|
+
}
|
|
2584
2598
|
.hover\:bg-white\/15:hover {
|
|
2585
2599
|
background-color: rgb(255 255 255 / 0.15);
|
|
2586
2600
|
}
|
package/package.json
CHANGED