spora 0.2.37 → 0.2.39
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 +8 -3
- package/package.json +1 -1
package/dist/web-chat/chat.html
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.top-bar {
|
|
24
|
+
position: relative;
|
|
24
25
|
padding: 0.625rem 1rem;
|
|
25
26
|
display: flex;
|
|
26
27
|
align-items: center;
|
|
@@ -405,10 +406,13 @@
|
|
|
405
406
|
|
|
406
407
|
/* Intelligence bar */
|
|
407
408
|
.intelligence-bar {
|
|
408
|
-
|
|
409
|
-
|
|
409
|
+
position: absolute;
|
|
410
|
+
left: 50%;
|
|
411
|
+
transform: translateX(-50%);
|
|
412
|
+
width: 40%;
|
|
410
413
|
display: flex;
|
|
411
414
|
flex-direction: column;
|
|
415
|
+
align-items: center;
|
|
412
416
|
gap: 3px;
|
|
413
417
|
}
|
|
414
418
|
|
|
@@ -417,6 +421,7 @@
|
|
|
417
421
|
color: rgba(255, 255, 255, 0.2);
|
|
418
422
|
letter-spacing: 0.03em;
|
|
419
423
|
white-space: nowrap;
|
|
424
|
+
text-align: center;
|
|
420
425
|
}
|
|
421
426
|
|
|
422
427
|
.intelligence-track {
|
|
@@ -608,7 +613,7 @@
|
|
|
608
613
|
<div class="top-bar">
|
|
609
614
|
<img class="logo-img" src="/logo.png" alt="Spora" />
|
|
610
615
|
<div class="intelligence-bar" id="intelligenceBar">
|
|
611
|
-
<span class="intelligence-label">
|
|
616
|
+
<span class="intelligence-label">Intelligence</span>
|
|
612
617
|
<div class="intelligence-track">
|
|
613
618
|
<div class="intelligence-fill" id="intelligenceFill"></div>
|
|
614
619
|
</div>
|