@sikka/hawa 0.19.21-next → 0.19.23-next
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.css +4 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +748 -747
- package/dist/index.mjs +955 -954
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -4261,6 +4261,10 @@ body {
|
|
|
4261
4261
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4262
4262
|
}
|
|
4263
4263
|
|
|
4264
|
+
.md\:hawa-grid-cols-\[1fr_repeat\(3\2c _minmax\(0\2c _1fr\)\)\] {
|
|
4265
|
+
grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
|
|
4266
|
+
}
|
|
4267
|
+
|
|
4264
4268
|
.md\:hawa-flex-row {
|
|
4265
4269
|
flex-direction: row;
|
|
4266
4270
|
}
|
package/dist/index.d.mts
CHANGED