@geomak/ui 6.17.2 → 6.19.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/README.md +59 -32
- package/dist/index.cjs +108 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -7
- package/dist/index.d.ts +20 -7
- package/dist/index.js +108 -31
- package/dist/index.js.map +1 -1
- package/dist/styles.css +5 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
box-sizing: border-box; /* 1 */
|
|
320
320
|
border-width: 0; /* 2 */
|
|
321
321
|
border-style: solid; /* 2 */
|
|
322
|
-
border-color:
|
|
322
|
+
border-color: #e5e7eb; /* 2 */
|
|
323
323
|
}
|
|
324
324
|
::before,
|
|
325
325
|
::after {
|
|
@@ -2110,6 +2110,10 @@ video {
|
|
|
2110
2110
|
padding-top: 1rem;
|
|
2111
2111
|
padding-bottom: 1rem;
|
|
2112
2112
|
}
|
|
2113
|
+
.py-6 {
|
|
2114
|
+
padding-top: 1.5rem;
|
|
2115
|
+
padding-bottom: 1.5rem;
|
|
2116
|
+
}
|
|
2113
2117
|
.py-8 {
|
|
2114
2118
|
padding-top: 2rem;
|
|
2115
2119
|
padding-bottom: 2rem;
|
package/package.json
CHANGED