Merge pull request #304 from xeader/fix/issue-271.2-ui-not-responsive
feat(notebooks): improve layout responsiveness
This commit is contained in:
commit
93cda6c42a
1 changed files with 2 additions and 2 deletions
|
|
@ -126,7 +126,7 @@ export default function NotebookPage() {
|
||||||
<NotebookHeader notebook={notebook} />
|
<NotebookHeader notebook={notebook} />
|
||||||
</div>
|
</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 */}
|
{/* Mobile: Tabbed interface - only render on mobile to avoid double-mounting */}
|
||||||
{!isDesktop && (
|
{!isDesktop && (
|
||||||
<>
|
<>
|
||||||
|
|
@ -223,7 +223,7 @@ export default function NotebookPage() {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Chat Column - always expanded, takes remaining space */}
|
{/* 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
|
<ChatColumn
|
||||||
notebookId={notebookId}
|
notebookId={notebookId}
|
||||||
contextSelections={contextSelections}
|
contextSelections={contextSelections}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue