@copilotz/chat-ui 0.7.7 → 0.7.9
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 +13 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +8 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1332,6 +1332,9 @@
|
|
|
1332
1332
|
.w-\[280px\] {
|
|
1333
1333
|
width: 280px;
|
|
1334
1334
|
}
|
|
1335
|
+
.w-\[min\(calc\(100vw-2rem\)\,48rem\)\] {
|
|
1336
|
+
width: min(calc(100vw - 2rem), 48rem);
|
|
1337
|
+
}
|
|
1335
1338
|
.w-auto {
|
|
1336
1339
|
width: auto;
|
|
1337
1340
|
}
|
|
@@ -1371,6 +1374,9 @@
|
|
|
1371
1374
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
1372
1375
|
max-width: calc(100% - 2rem);
|
|
1373
1376
|
}
|
|
1377
|
+
.max-w-\[calc\(100vw-2rem\)\] {
|
|
1378
|
+
max-width: calc(100vw - 2rem);
|
|
1379
|
+
}
|
|
1374
1380
|
.max-w-full {
|
|
1375
1381
|
max-width: 100%;
|
|
1376
1382
|
}
|
|
@@ -1510,8 +1516,8 @@
|
|
|
1510
1516
|
.grid-cols-\[1rem_minmax\(0\,1fr\)\] {
|
|
1511
1517
|
grid-template-columns: 1rem minmax(0,1fr);
|
|
1512
1518
|
}
|
|
1513
|
-
.grid-cols-\[
|
|
1514
|
-
grid-template-columns: auto 1fr;
|
|
1519
|
+
.grid-cols-\[auto_minmax\(0\,1fr\)\] {
|
|
1520
|
+
grid-template-columns: auto minmax(0,1fr);
|
|
1515
1521
|
}
|
|
1516
1522
|
.grid-rows-\[auto_auto\] {
|
|
1517
1523
|
grid-template-rows: auto auto;
|