@copilotz/chat-ui 0.6.1 → 0.6.3
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 +16 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +16 -7
- package/dist/index.js.map +1 -1
- package/dist/styles.css +3 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1472,6 +1472,9 @@
|
|
|
1472
1472
|
.grid-cols-4 {
|
|
1473
1473
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1474
1474
|
}
|
|
1475
|
+
.grid-cols-\[minmax\(0\,1fr\)_auto\] {
|
|
1476
|
+
grid-template-columns: minmax(0,1fr) auto;
|
|
1477
|
+
}
|
|
1475
1478
|
.grid-rows-\[auto_auto\] {
|
|
1476
1479
|
grid-template-rows: auto auto;
|
|
1477
1480
|
}
|