fix: limit horizontal scroll to tables instead of entire message area

This commit is contained in:
RAIT-09 2026-01-18 00:02:30 +09:00
parent 5683685cb6
commit ca5dd79952

View file

@ -426,11 +426,19 @@ If your plugin does not need CSS, delete this file.
flex: 1;
padding: 16px;
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
gap: 2px;
}
/* Allow horizontal scroll for wide tables within messages */
.agent-client-chat-view-messages table {
display: block;
overflow-x: auto;
max-width: 100%;
}
/* Error display */
.agent-client-chat-error-container {
display: flex;