Fix input alignment and mobile responsiveness

- Set message-input max-width to 70% to match message bubble width
- Add mobile media query: input 95%, message bubble 90%
- Input wrapper uses flex: 1 for proper sizing

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kappa
2026-01-19 10:48:05 +09:00
parent 4825cf4351
commit d1778b9dae
2 changed files with 14 additions and 1 deletions

View File

@@ -44,6 +44,12 @@
gap: 4px;
}
@media (max-width: 768px) {
.message-bubble {
max-width: 90%;
}
}
.message.mine .message-bubble {
background: #e94560;
border-bottom-right-radius: 4px;