fix: responsive layout for chat action buttons on mobile

- Add flex-wrap to prevent button overflow
- Reduce button padding and font-size on small screens
- Hide keyboard hints (Esc/Enter) on mobile
This commit is contained in:
Clawdbot 2026-01-28 17:38:24 +01:00
parent b57d85264c
commit 9d529f51b1

View File

@ -1369,6 +1369,22 @@
}
}
@media (max-width: 480px) {
.chat-compose__actions {
flex-wrap: wrap;
gap: 6px;
}
.chat-compose__actions .btn {
padding: 6px 10px;
font-size: 13px;
}
.chat-compose__actions .btn-kbd {
display: none;
}
}
/* ===========================================
QR Code
=========================================== */