fix: Chat input is hidden in mobile browser mode (#877)

This commit is contained in:
Nick Pismenkov
2026-03-10 10:40:17 -07:00
committed by GitHub
parent 8cd9b4bcfd
commit 1b85fe827c
+17
View File
@@ -1277,6 +1277,8 @@ body {
gap: 8px;
background: var(--bg-secondary);
border-top: 1px solid var(--border);
flex-shrink: 0;
min-height: 56px;
}
.chat-input textarea {
@@ -3720,6 +3722,21 @@ mark {
.ext-install-form input {
width: 100%;
}
/* Chat input: ensure visibility on mobile */
.chat-input {
min-height: 52px;
}
.chat-input textarea {
min-height: 36px;
max-height: 100px;
}
.chat-input button {
padding: 6px 16px;
font-size: 14px;
}
}
/* Slash command autocomplete dropdown */