Use Cmd/Ctrl+Enter to send prompts and update docs

This commit is contained in:
Shantur Rathore
2025-11-03 10:59:32 +00:00
parent 40832ec1b6
commit 618729e1e3
12 changed files with 127 additions and 73 deletions

View File

@@ -183,7 +183,7 @@ button.button-primary {
}
.prompt-input {
@apply flex-1 min-h-[40px] max-h-[200px] p-2.5 border rounded-md text-sm resize-none outline-none transition-colors;
@apply flex-1 min-h-[96px] max-h-[200px] p-2.5 border rounded-md text-sm resize-none outline-none transition-colors;
font-family: inherit;
background-color: var(--surface-base);
color: inherit;

View File

@@ -3,6 +3,7 @@
/* Prose styles for markdown content */
.prose {
color: var(--text-primary);
line-height: var(--line-height-tight) !important;
}
.prose code {
@@ -47,20 +48,25 @@
.prose ul,
.prose ol {
margin: 8px 0;
margin: 0;
padding-left: 24px;
}
.prose ul {
margin: 0 !important;
list-style-type: disc;
line-height: var(--line-height-tight) !important;
}
.prose ol {
margin: 0 !important;
list-style-type: decimal;
line-height: var(--line-height-tight) !important;
}
.prose li {
margin: 4px 0;
margin: 0 !important;
line-height: var(--line-height-tight) !important;
}
.prose h1 {
@@ -105,7 +111,8 @@
}
.prose p {
margin: 8px 0;
margin: 0 !important;
line-height: var(--line-height-normal) !important;
}
.prose hr {