@copilotz/chat-ui 0.6.2 → 0.6.4
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 +75 -38
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +75 -38
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1070,6 +1070,9 @@
|
|
|
1070
1070
|
.\!inline {
|
|
1071
1071
|
display: inline !important;
|
|
1072
1072
|
}
|
|
1073
|
+
.block {
|
|
1074
|
+
display: block;
|
|
1075
|
+
}
|
|
1073
1076
|
.flex {
|
|
1074
1077
|
display: flex;
|
|
1075
1078
|
}
|
|
@@ -1472,6 +1475,9 @@
|
|
|
1472
1475
|
.grid-cols-4 {
|
|
1473
1476
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1474
1477
|
}
|
|
1478
|
+
.grid-cols-\[minmax\(0\,1fr\)_auto\] {
|
|
1479
|
+
grid-template-columns: minmax(0,1fr) auto;
|
|
1480
|
+
}
|
|
1475
1481
|
.grid-rows-\[auto_auto\] {
|
|
1476
1482
|
grid-template-rows: auto auto;
|
|
1477
1483
|
}
|