mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-04 05:39:06 +00:00
- Updated references panel - Use subtle coloring for chat cards - Chat streaming with train of thought - Side panel with limited sessions, expandable - Manage conversation file filters easily from the side panel - Updated nav menu, easily go to agents/automations/profile - Upload data from the chat UI (on click attachment icon) - Slash command pop-up menu, scrollable and selectable - Dark mode-enabled - Mostly mobile friendly
27 lines
469 B
CSS
27 lines
469 B
CSS
div.chatHistory {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
div.chatLayout {
|
|
height: 80vh;
|
|
overflow-y: auto;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
div.agentIndicator a {
|
|
display: flex;
|
|
text-align: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
div.trainOfThought {
|
|
border: 1px var(--border-color) solid;
|
|
border-radius: 16px;
|
|
padding: 0 16px;
|
|
margin: 12px;
|
|
box-shadow: 0 4px 10px var(--box-shadow-color);
|
|
}
|