spora 0.2.36 → 0.2.38
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 +10 -8
- package/package.json +1 -1
package/dist/web-chat/chat.html
CHANGED
|
@@ -406,32 +406,34 @@
|
|
|
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
|
+
align-items: center;
|
|
412
413
|
gap: 3px;
|
|
413
|
-
max-width:
|
|
414
|
+
max-width: 50%;
|
|
414
415
|
}
|
|
415
416
|
|
|
416
417
|
.intelligence-label {
|
|
417
|
-
font-size: 0.
|
|
418
|
+
font-size: 0.5625rem;
|
|
418
419
|
color: rgba(255, 255, 255, 0.2);
|
|
419
420
|
letter-spacing: 0.03em;
|
|
420
421
|
white-space: nowrap;
|
|
422
|
+
text-align: center;
|
|
421
423
|
}
|
|
422
424
|
|
|
423
425
|
.intelligence-track {
|
|
424
426
|
width: 100%;
|
|
425
|
-
height:
|
|
427
|
+
height: 3px;
|
|
426
428
|
background: rgba(255, 255, 255, 0.06);
|
|
427
|
-
border-radius:
|
|
429
|
+
border-radius: 1.5px;
|
|
428
430
|
overflow: hidden;
|
|
429
431
|
}
|
|
430
432
|
|
|
431
433
|
.intelligence-fill {
|
|
432
434
|
height: 100%;
|
|
433
435
|
width: 0%;
|
|
434
|
-
border-radius:
|
|
436
|
+
border-radius: 1.5px;
|
|
435
437
|
background: linear-gradient(90deg, #389e77 0%, #4fc3a0 50%, #7ee8c7 100%);
|
|
436
438
|
transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
437
439
|
}
|
|
@@ -439,7 +441,7 @@
|
|
|
439
441
|
/* Heartbeat config button */
|
|
440
442
|
.heartbeat-config {
|
|
441
443
|
position: relative;
|
|
442
|
-
margin-left:
|
|
444
|
+
margin-left: auto;
|
|
443
445
|
}
|
|
444
446
|
|
|
445
447
|
.heartbeat-btn {
|
|
@@ -609,7 +611,7 @@
|
|
|
609
611
|
<div class="top-bar">
|
|
610
612
|
<img class="logo-img" src="/logo.png" alt="Spora" />
|
|
611
613
|
<div class="intelligence-bar" id="intelligenceBar">
|
|
612
|
-
<span class="intelligence-label">
|
|
614
|
+
<span class="intelligence-label">Intelligence</span>
|
|
613
615
|
<div class="intelligence-track">
|
|
614
616
|
<div class="intelligence-fill" id="intelligenceFill"></div>
|
|
615
617
|
</div>
|