Chat Client changes:

- maximum width for input and message history
- ensure good display for sidebar explanation
This commit is contained in:
Josako
2025-06-13 00:56:22 +02:00
parent 5f1a5711f6
commit b326c0c6f2
2 changed files with 58 additions and 0 deletions

View File

@@ -89,6 +89,25 @@
text-decoration: underline;
}
/* Style lists in markdown content */
.sidebar-explanation ul,
.sidebar-explanation ol {
padding-left: 20px;
margin: 10px 0;
}
.sidebar-explanation li {
margin-bottom: 5px;
}
.sidebar-explanation ul li {
list-style-type: disc;
}
.sidebar-explanation ol li {
list-style-type: decimal;
}
.content-area {
flex: 1;
background: linear-gradient(135deg, var(--gradient-start-color), var(--gradient-end-color));