feat: auto-resize textarea, persistent token stats

This commit is contained in:
Alexej Wolff
2026-02-11 02:05:28 +01:00
parent 8c6d6591f8
commit 863cf7f6b6
3 changed files with 96 additions and 19 deletions
+6 -4
View File
@@ -420,9 +420,9 @@
.input-container textarea {
flex: 1;
min-height: 50px;
max-height: 120px;
padding: 0.875rem 1rem;
min-height: 44px;
max-height: 150px;
padding: 0.75rem 1rem;
background: #1a1a1a;
border: 2px solid #333;
border-radius: 12px;
@@ -430,7 +430,9 @@
font-size: 1rem;
font-family: inherit;
resize: none;
transition: border-color 0.2s;
transition: border-color 0.2s, height 0.1s ease;
overflow-y: auto;
line-height: 1.4;
}
.input-container textarea:focus {