@geomak/ui 7.3.4 → 7.4.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 +115 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +115 -43
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1336,6 +1336,9 @@ video {
|
|
|
1336
1336
|
.max-h-\[calc\(100vh-2rem\)\] {
|
|
1337
1337
|
max-height: calc(100vh - 2rem);
|
|
1338
1338
|
}
|
|
1339
|
+
.min-h-0 {
|
|
1340
|
+
min-height: 0px;
|
|
1341
|
+
}
|
|
1339
1342
|
.min-h-\[200px\] {
|
|
1340
1343
|
min-height: 200px;
|
|
1341
1344
|
}
|
|
@@ -1596,6 +1599,9 @@ video {
|
|
|
1596
1599
|
.flex-1 {
|
|
1597
1600
|
flex: 1 1 0%;
|
|
1598
1601
|
}
|
|
1602
|
+
.flex-\[2\] {
|
|
1603
|
+
flex: 2;
|
|
1604
|
+
}
|
|
1599
1605
|
.flex-shrink-0 {
|
|
1600
1606
|
flex-shrink: 0;
|
|
1601
1607
|
}
|