@chrysb/alphaclaw 0.8.3-beta.2 → 0.8.3-beta.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/lib/public/css/chat.css
CHANGED
|
@@ -322,7 +322,8 @@
|
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
.chat-typing-indicator {
|
|
325
|
-
min-width:
|
|
325
|
+
min-width: 0;
|
|
326
|
+
align-self: flex-start;
|
|
326
327
|
}
|
|
327
328
|
|
|
328
329
|
.chat-typing-dots {
|
|
@@ -372,14 +373,17 @@
|
|
|
372
373
|
|
|
373
374
|
.chat-composer-input {
|
|
374
375
|
flex: 1;
|
|
375
|
-
min-height:
|
|
376
|
-
max-height:
|
|
376
|
+
min-height: calc(12px * 1.4 + 20px);
|
|
377
|
+
max-height: calc(12px * 1.4 * 5 + 20px);
|
|
377
378
|
border-radius: 10px;
|
|
378
|
-
resize:
|
|
379
|
+
resize: none;
|
|
380
|
+
overflow-x: hidden;
|
|
381
|
+
overflow-y: auto;
|
|
379
382
|
font-family: inherit;
|
|
380
383
|
font-size: 12px;
|
|
381
384
|
line-height: 1.4;
|
|
382
385
|
padding: 10px;
|
|
386
|
+
box-sizing: border-box;
|
|
383
387
|
}
|
|
384
388
|
|
|
385
389
|
.chat-composer-send {
|