spora 0.2.36 → 0.2.37
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/web-chat/chat.html +6 -7
- package/package.json +1 -1
package/dist/web-chat/chat.html
CHANGED
|
@@ -406,15 +406,14 @@
|
|
|
406
406
|
/* Intelligence bar */
|
|
407
407
|
.intelligence-bar {
|
|
408
408
|
flex: 1;
|
|
409
|
-
margin: 0
|
|
409
|
+
margin: 0 14px;
|
|
410
410
|
display: flex;
|
|
411
411
|
flex-direction: column;
|
|
412
412
|
gap: 3px;
|
|
413
|
-
max-width: 140px;
|
|
414
413
|
}
|
|
415
414
|
|
|
416
415
|
.intelligence-label {
|
|
417
|
-
font-size: 0.
|
|
416
|
+
font-size: 0.5625rem;
|
|
418
417
|
color: rgba(255, 255, 255, 0.2);
|
|
419
418
|
letter-spacing: 0.03em;
|
|
420
419
|
white-space: nowrap;
|
|
@@ -422,16 +421,16 @@
|
|
|
422
421
|
|
|
423
422
|
.intelligence-track {
|
|
424
423
|
width: 100%;
|
|
425
|
-
height:
|
|
424
|
+
height: 3px;
|
|
426
425
|
background: rgba(255, 255, 255, 0.06);
|
|
427
|
-
border-radius:
|
|
426
|
+
border-radius: 1.5px;
|
|
428
427
|
overflow: hidden;
|
|
429
428
|
}
|
|
430
429
|
|
|
431
430
|
.intelligence-fill {
|
|
432
431
|
height: 100%;
|
|
433
432
|
width: 0%;
|
|
434
|
-
border-radius:
|
|
433
|
+
border-radius: 1.5px;
|
|
435
434
|
background: linear-gradient(90deg, #389e77 0%, #4fc3a0 50%, #7ee8c7 100%);
|
|
436
435
|
transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
437
436
|
}
|
|
@@ -439,7 +438,7 @@
|
|
|
439
438
|
/* Heartbeat config button */
|
|
440
439
|
.heartbeat-config {
|
|
441
440
|
position: relative;
|
|
442
|
-
margin-left:
|
|
441
|
+
margin-left: auto;
|
|
443
442
|
}
|
|
444
443
|
|
|
445
444
|
.heartbeat-btn {
|