@copilotz/chat-ui 0.9.5 → 0.9.6
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 +64 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +64 -20
- package/dist/index.js.map +1 -1
- package/dist/styles.css +20 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1236,15 +1236,15 @@
|
|
|
1236
1236
|
.min-h-9 {
|
|
1237
1237
|
min-height: calc(var(--spacing) * 9);
|
|
1238
1238
|
}
|
|
1239
|
+
.min-h-28 {
|
|
1240
|
+
min-height: calc(var(--spacing) * 28);
|
|
1241
|
+
}
|
|
1239
1242
|
.min-h-\[60px\] {
|
|
1240
1243
|
min-height: 60px;
|
|
1241
1244
|
}
|
|
1242
1245
|
.min-h-\[60vh\] {
|
|
1243
1246
|
min-height: 60vh;
|
|
1244
1247
|
}
|
|
1245
|
-
.min-h-\[100px\] {
|
|
1246
|
-
min-height: 100px;
|
|
1247
|
-
}
|
|
1248
1248
|
.min-h-svh {
|
|
1249
1249
|
min-height: 100svh;
|
|
1250
1250
|
}
|
|
@@ -1374,6 +1374,9 @@
|
|
|
1374
1374
|
.max-w-\[calc\(100vw-2rem\)\] {
|
|
1375
1375
|
max-width: calc(100vw - 2rem);
|
|
1376
1376
|
}
|
|
1377
|
+
.max-w-\[min\(42rem\,85\%\)\] {
|
|
1378
|
+
max-width: min(42rem, 85%);
|
|
1379
|
+
}
|
|
1377
1380
|
.max-w-full {
|
|
1378
1381
|
max-width: 100%;
|
|
1379
1382
|
}
|
|
@@ -1504,6 +1507,9 @@
|
|
|
1504
1507
|
.resize-none {
|
|
1505
1508
|
resize: none;
|
|
1506
1509
|
}
|
|
1510
|
+
.resize-y {
|
|
1511
|
+
resize: vertical;
|
|
1512
|
+
}
|
|
1507
1513
|
.auto-rows-min {
|
|
1508
1514
|
grid-auto-rows: min-content;
|
|
1509
1515
|
}
|
|
@@ -1842,6 +1848,12 @@
|
|
|
1842
1848
|
background-color: color-mix(in oklab, var(--color-muted) 20%, transparent);
|
|
1843
1849
|
}
|
|
1844
1850
|
}
|
|
1851
|
+
.bg-muted\/30 {
|
|
1852
|
+
background-color: color-mix(in srgb, hsl(var(--muted)) 30%, transparent);
|
|
1853
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1854
|
+
background-color: color-mix(in oklab, var(--color-muted) 30%, transparent);
|
|
1855
|
+
}
|
|
1856
|
+
}
|
|
1845
1857
|
.bg-muted\/50 {
|
|
1846
1858
|
background-color: color-mix(in srgb, hsl(var(--muted)) 50%, transparent);
|
|
1847
1859
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3097,6 +3109,11 @@
|
|
|
3097
3109
|
opacity: 50%;
|
|
3098
3110
|
}
|
|
3099
3111
|
}
|
|
3112
|
+
.disabled\:opacity-70 {
|
|
3113
|
+
&:disabled {
|
|
3114
|
+
opacity: 70%;
|
|
3115
|
+
}
|
|
3116
|
+
}
|
|
3100
3117
|
.in-data-\[side\=left\]\:cursor-w-resize {
|
|
3101
3118
|
:where(*[data-side="left"]) & {
|
|
3102
3119
|
cursor: w-resize;
|