Move send button below textarea, make it smaller

This commit is contained in:
Jacob Hinkle 2026-06-29 10:58:42 -04:00
parent 0b67939a53
commit 15a80d1fd2

View File

@ -36,20 +36,22 @@
.chat-input { .chat-input {
display: flex; display: flex;
flex-direction: column;
gap: 0.5rem; gap: 0.5rem;
align-items: flex-start;
} }
.chat-input textarea { .chat-input textarea {
flex: 1; width: 100%;
resize: vertical; resize: vertical;
min-height: 2.5rem; min-height: 2.5rem;
box-sizing: border-box;
} }
.chat-input button { .chat-input button {
width: auto; width: auto;
padding: 0.5rem 1.5rem; align-self: flex-end;
flex-shrink: 0; padding: 0.25rem 1rem;
font-size: 0.9rem;
} }
.chat-status { .chat-status {