@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/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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotz/chat-ui",
3
- "version": "0.6.6",
3
+ "version": "0.6.8",
4
4
  "description": "Copilotz chat UI components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",