@copilotz/chat-ui 0.6.6 → 0.6.8
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 +523 -387
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +40 -24
- package/dist/index.d.ts +40 -24
- package/dist/index.js +435 -285
- package/dist/index.js.map +1 -1
- package/dist/styles.css +24 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -360,6 +360,24 @@
|
|
|
360
360
|
.row-start-1 {
|
|
361
361
|
grid-row-start: 1;
|
|
362
362
|
}
|
|
363
|
+
.container {
|
|
364
|
+
width: 100%;
|
|
365
|
+
@media (width >= 40rem) {
|
|
366
|
+
max-width: 40rem;
|
|
367
|
+
}
|
|
368
|
+
@media (width >= 48rem) {
|
|
369
|
+
max-width: 48rem;
|
|
370
|
+
}
|
|
371
|
+
@media (width >= 64rem) {
|
|
372
|
+
max-width: 64rem;
|
|
373
|
+
}
|
|
374
|
+
@media (width >= 80rem) {
|
|
375
|
+
max-width: 80rem;
|
|
376
|
+
}
|
|
377
|
+
@media (width >= 96rem) {
|
|
378
|
+
max-width: 96rem;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
363
381
|
.m-auto {
|
|
364
382
|
margin: auto;
|
|
365
383
|
}
|
|
@@ -1735,6 +1753,12 @@
|
|
|
1735
1753
|
.bg-accent {
|
|
1736
1754
|
background-color: var(--color-accent);
|
|
1737
1755
|
}
|
|
1756
|
+
.bg-accent\/60 {
|
|
1757
|
+
background-color: color-mix(in srgb, hsl(var(--accent)) 60%, transparent);
|
|
1758
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1759
|
+
background-color: color-mix(in oklab, var(--color-accent) 60%, transparent);
|
|
1760
|
+
}
|
|
1761
|
+
}
|
|
1738
1762
|
.bg-background {
|
|
1739
1763
|
background-color: var(--color-background);
|
|
1740
1764
|
}
|