fix(ui): allow manual prompt bar resize (#1201)

This commit is contained in:
red person
2026-06-02 17:43:53 +03:00
committed by GitHub
parent 42ae905df7
commit 258e6fc0d4
3 changed files with 37 additions and 5 deletions

View File

@@ -2192,12 +2192,12 @@ body.bg-pattern-sparkles {
background: transparent;
border: none;
outline: none;
resize: none;
resize: vertical;
font-size: 14px;
line-height: 1.5;
color: var(--fg);
min-height: 24px;
max-height: 200px;
max-height: min(60vh, 600px);
padding: 0;
font-family: inherit;
transition: height 0.12s ease-out;