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:
parent
b57d85264c
commit
9d529f51b1
@ -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
|
||||
=========================================== */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user