typebulb 0.21.3 → 0.22.0
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/agents/claude/client.js +100 -100
- package/dist/agents/claude/styles.css +28 -0
- package/dist/agents/claude/typebulb-inv.png +0 -0
- package/dist/agents/claude/typebulb.png +0 -0
- package/dist/agents/pi/client.js +99 -99
- package/dist/agents/pi/matchu-patchu.ts +41 -25
- package/dist/agents/pi/styles.css +28 -0
- package/dist/agents/pi/typebulb-inv.png +0 -0
- package/dist/agents/pi/typebulb.png +0 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
|
@@ -856,6 +856,34 @@ a.server-port:hover { text-decoration: underline; }
|
|
|
856
856
|
width: 100%;
|
|
857
857
|
margin: 0 auto;
|
|
858
858
|
}
|
|
859
|
+
/* Top-of-transcript wordmark + tagline (messageList.ts #masthead). Centred on the prose column,
|
|
860
|
+
scrolls with the conversation. Both logos render; theme picks which shows. */
|
|
861
|
+
.masthead {
|
|
862
|
+
max-width: var(--content-max);
|
|
863
|
+
width: 100%;
|
|
864
|
+
margin: 0 auto 1rem auto;
|
|
865
|
+
padding: .35rem 0 .35rem;
|
|
866
|
+
display: flex;
|
|
867
|
+
flex-direction: column;
|
|
868
|
+
align-items: flex-start;
|
|
869
|
+
gap: .5rem;
|
|
870
|
+
text-align: left;
|
|
871
|
+
user-select: none;
|
|
872
|
+
}
|
|
873
|
+
.masthead-logo {
|
|
874
|
+
width: 170px;
|
|
875
|
+
max-width: 55%;
|
|
876
|
+
height: auto;
|
|
877
|
+
opacity: .92;
|
|
878
|
+
}
|
|
879
|
+
.masthead-tagline {
|
|
880
|
+
color: var(--muted);
|
|
881
|
+
font-size: .85rem;
|
|
882
|
+
}
|
|
883
|
+
/* Black wordmark on light, outline on dark. */
|
|
884
|
+
.masthead-logo.dark { display: none; }
|
|
885
|
+
html[data-theme="dark"] .masthead-logo.light { display: none; }
|
|
886
|
+
html[data-theme="dark"] .masthead-logo.dark { display: block; }
|
|
859
887
|
.bubble {
|
|
860
888
|
position: relative;
|
|
861
889
|
max-width: var(--content-max);
|
|
Binary file
|
|
Binary file
|