mirror of
https://github.com/rait-09/obsidian-agent-client.git
synced 2026-07-22 06:43:37 +00:00
fix: limit horizontal scroll to tables instead of entire message area
This commit is contained in:
parent
5683685cb6
commit
ca5dd79952
1 changed files with 8 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue