@geomak/ui 6.3.0 → 6.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 +245 -193
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +45 -1
- package/dist/index.d.ts +45 -1
- package/dist/index.js +61 -10
- package/dist/index.js.map +1 -1
- package/dist/styles.css +10 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -942,6 +942,10 @@ video {
|
|
|
942
942
|
.m-1 {
|
|
943
943
|
margin: 0.25rem;
|
|
944
944
|
}
|
|
945
|
+
.-mx-1 {
|
|
946
|
+
margin-left: -0.25rem;
|
|
947
|
+
margin-right: -0.25rem;
|
|
948
|
+
}
|
|
945
949
|
.mx-auto {
|
|
946
950
|
margin-left: auto;
|
|
947
951
|
margin-right: auto;
|
|
@@ -1343,6 +1347,12 @@ video {
|
|
|
1343
1347
|
.max-w-5xl {
|
|
1344
1348
|
max-width: 64rem;
|
|
1345
1349
|
}
|
|
1350
|
+
.max-w-\[12rem\] {
|
|
1351
|
+
max-width: 12rem;
|
|
1352
|
+
}
|
|
1353
|
+
.max-w-\[16rem\] {
|
|
1354
|
+
max-width: 16rem;
|
|
1355
|
+
}
|
|
1346
1356
|
.max-w-\[220px\] {
|
|
1347
1357
|
max-width: 220px;
|
|
1348
1358
|
}
|