spora 0.2.38 → 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 +5 -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,13 +406,14 @@
|
|
|
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;
|
|
412
415
|
align-items: center;
|
|
413
416
|
gap: 3px;
|
|
414
|
-
max-width: 50%;
|
|
415
417
|
}
|
|
416
418
|
|
|
417
419
|
.intelligence-label {
|