fix(webchat): improve image paste UI layout and display

- Fix preview container width (use inline-flex + fit-content)
- Fix flex layout conflict in components.css (grid -> flex column)
- Change preview thumbnail to object-fit: contain (no cropping)
- Add image rendering in sent message bubbles
- Add CSS for chat-message-images display

Improves upon #1900
This commit is contained in:
Clawd
2026-01-25 22:46:09 +03:00
committed by Peter Steinberger
parent fabdf2f6f7
commit 9ba4b1e32b
3 changed files with 98 additions and 6 deletions

View File

@@ -1303,9 +1303,8 @@
/* Chat compose */
.chat-compose {
margin-top: 12px;
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: end;
display: flex;
flex-direction: column;
gap: 10px;
}