Skip to content

Commit 999fcf9

Browse files
committed
v1.1.4: fix list overflow in chat message bubbles
Constrain ol/ul/p margin and padding inside .chat-msg so numbered and bulleted lists render inside the bubble instead of overflowing.
1 parent 526ee5d commit 999fcf9

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-knowledge",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Cross-session memory and recall for AI agents — git-synced knowledge base, hybrid semantic+TF-IDF search, auto-distillation with secrets scrubbing",
55
"type": "module",
66
"main": "dist/index.js",

src/ui/styles.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,17 @@ h1 {
969969
font-size: 13px;
970970
line-height: 1.5;
971971
word-break: break-word;
972+
overflow: hidden;
973+
}
974+
975+
.chat-msg ol,
976+
.chat-msg ul {
977+
margin: 4px 0;
978+
padding-left: 1.4em;
979+
}
980+
981+
.chat-msg p {
982+
margin: 4px 0;
972983
}
973984

974985
.chat-msg.user {

0 commit comments

Comments
 (0)