Fix scroll-to-bottom in builder page

- Simplified scrollChatToBottom() with more reliable techniques
- Added scrollIntoView on last message as fallback
- Added additional scroll with direct scrollTop assignment after delay
- Added CSS optimizations for scrolling behavior (-webkit-overflow-scrolling, transform, will-change)
- Added more robust scroll attempts in renderMessages after DOM updates
This commit is contained in:
southseact-3d
2026-02-08 17:16:07 +00:00
parent 55bada9ee2
commit c30d2ba715
2 changed files with 52 additions and 76 deletions

View File

@@ -55,6 +55,10 @@
flex: 1;
overflow-y: auto;
min-height: 0;
-webkit-overflow-scrolling: touch;
scroll-behavior: auto;
transform: translateZ(0);
will-change: scroll-position;
}
.app-shell.builder-single>* {