@geomak/ui 6.5.0 → 6.6.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 +218 -196
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -1
- package/dist/index.d.ts +28 -1
- package/dist/index.js +33 -12
- package/dist/index.js.map +1 -1
- package/dist/styles.css +12 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1341,12 +1341,18 @@ video {
|
|
|
1341
1341
|
.min-w-\[200px\] {
|
|
1342
1342
|
min-width: 200px;
|
|
1343
1343
|
}
|
|
1344
|
+
.min-w-\[20px\] {
|
|
1345
|
+
min-width: 20px;
|
|
1346
|
+
}
|
|
1344
1347
|
.min-w-\[224px\] {
|
|
1345
1348
|
min-width: 224px;
|
|
1346
1349
|
}
|
|
1347
1350
|
.min-w-\[240px\] {
|
|
1348
1351
|
min-width: 240px;
|
|
1349
1352
|
}
|
|
1353
|
+
.min-w-\[24px\] {
|
|
1354
|
+
min-width: 24px;
|
|
1355
|
+
}
|
|
1350
1356
|
.min-w-\[6rem\] {
|
|
1351
1357
|
min-width: 6rem;
|
|
1352
1358
|
}
|
|
@@ -1783,6 +1789,9 @@ video {
|
|
|
1783
1789
|
.border-b-0 {
|
|
1784
1790
|
border-bottom-width: 0px;
|
|
1785
1791
|
}
|
|
1792
|
+
.border-b-2 {
|
|
1793
|
+
border-bottom-width: 2px;
|
|
1794
|
+
}
|
|
1786
1795
|
.border-l {
|
|
1787
1796
|
border-left-width: 1px;
|
|
1788
1797
|
}
|
|
@@ -2077,6 +2086,9 @@ video {
|
|
|
2077
2086
|
.align-middle {
|
|
2078
2087
|
vertical-align: middle;
|
|
2079
2088
|
}
|
|
2089
|
+
.font-sans {
|
|
2090
|
+
font-family: var(--font-family-sans), sans-serif;
|
|
2091
|
+
}
|
|
2080
2092
|
.text-2xl {
|
|
2081
2093
|
font-size: var(--font-size-2xl);
|
|
2082
2094
|
line-height: var(--line-height-tight);
|