Merge pull request #304 from xeader/fix/issue-271.2-ui-not-responsive

feat(notebooks): improve layout responsiveness
This commit is contained in:
Luis Novo 2025-12-20 10:18:22 -03:00 committed by GitHub
commit 93cda6c42a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,7 @@ export default function NotebookPage() {
<NotebookHeader notebook={notebook} />
</div>
<div className="flex-1 p-6 pt-6 overflow-hidden flex flex-col">
<div className="flex-1 p-6 pt-6 overflow-x-auto flex flex-col">
{/* Mobile: Tabbed interface - only render on mobile to avoid double-mounting */}
{!isDesktop && (
<>
@ -223,7 +223,7 @@ export default function NotebookPage() {
</div>
{/* Chat Column - always expanded, takes remaining space */}
<div className="transition-all duration-150 flex-1">
<div className="transition-all duration-150 flex-1 lg:pr-6 lg:-mr-6">
<ChatColumn
notebookId={notebookId}
contextSelections={contextSelections}