@geomak/ui 6.26.0 → 6.26.1
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 +42 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +42 -45
- package/dist/index.js.map +1 -1
- package/dist/styles.css +28 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1050,6 +1050,9 @@ video {
|
|
|
1050
1050
|
.mr-2 {
|
|
1051
1051
|
margin-right: 0.5rem;
|
|
1052
1052
|
}
|
|
1053
|
+
.mr-auto {
|
|
1054
|
+
margin-right: auto;
|
|
1055
|
+
}
|
|
1053
1056
|
.mt-0\.5 {
|
|
1054
1057
|
margin-top: 0.125rem;
|
|
1055
1058
|
}
|
|
@@ -1234,6 +1237,9 @@ video {
|
|
|
1234
1237
|
.max-h-\[90dvh\] {
|
|
1235
1238
|
max-height: 90dvh;
|
|
1236
1239
|
}
|
|
1240
|
+
.max-h-\[calc\(100vh-2rem\)\] {
|
|
1241
|
+
max-height: calc(100vh - 2rem);
|
|
1242
|
+
}
|
|
1237
1243
|
.min-h-\[200px\] {
|
|
1238
1244
|
min-height: 200px;
|
|
1239
1245
|
}
|
|
@@ -1449,6 +1455,9 @@ video {
|
|
|
1449
1455
|
.max-w-\[40ch\] {
|
|
1450
1456
|
max-width: 40ch;
|
|
1451
1457
|
}
|
|
1458
|
+
.max-w-\[calc\(100vw-1rem\)\] {
|
|
1459
|
+
max-width: calc(100vw - 1rem);
|
|
1460
|
+
}
|
|
1452
1461
|
.max-w-full {
|
|
1453
1462
|
max-width: 100%;
|
|
1454
1463
|
}
|
|
@@ -1740,9 +1749,16 @@ video {
|
|
|
1740
1749
|
.gap-8 {
|
|
1741
1750
|
gap: 2rem;
|
|
1742
1751
|
}
|
|
1752
|
+
.gap-x-4 {
|
|
1753
|
+
-moz-column-gap: 1rem;
|
|
1754
|
+
column-gap: 1rem;
|
|
1755
|
+
}
|
|
1743
1756
|
.gap-y-1 {
|
|
1744
1757
|
row-gap: 0.25rem;
|
|
1745
1758
|
}
|
|
1759
|
+
.gap-y-3 {
|
|
1760
|
+
row-gap: 0.75rem;
|
|
1761
|
+
}
|
|
1746
1762
|
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1747
1763
|
--tw-space-y-reverse: 0;
|
|
1748
1764
|
margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -2188,9 +2204,6 @@ video {
|
|
|
2188
2204
|
.pr-2\.5 {
|
|
2189
2205
|
padding-right: 0.625rem;
|
|
2190
2206
|
}
|
|
2191
|
-
.pr-3 {
|
|
2192
|
-
padding-right: 0.75rem;
|
|
2193
|
-
}
|
|
2194
2207
|
.pr-8 {
|
|
2195
2208
|
padding-right: 2rem;
|
|
2196
2209
|
}
|
|
@@ -2977,6 +2990,18 @@ video {
|
|
|
2977
2990
|
.sm\:grid-cols-2 {
|
|
2978
2991
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2979
2992
|
}
|
|
2993
|
+
.sm\:flex-row {
|
|
2994
|
+
flex-direction: row;
|
|
2995
|
+
}
|
|
2996
|
+
.sm\:border-r {
|
|
2997
|
+
border-right-width: 1px;
|
|
2998
|
+
}
|
|
2999
|
+
.sm\:border-border {
|
|
3000
|
+
border-color: var(--color-border);
|
|
3001
|
+
}
|
|
3002
|
+
.sm\:pr-3 {
|
|
3003
|
+
padding-right: 0.75rem;
|
|
3004
|
+
}
|
|
2980
3005
|
}
|
|
2981
3006
|
@media (min-width: 768px) {
|
|
2982
3007
|
.md\:flex {
|
package/package.json
CHANGED