Merge branch 'docs-layout-fix' into 'main'

Docs/Sheets: Fix for layout that doesn't affect other apps

See merge request web/clients!21648
This commit is contained in:
MargeBot 2026-01-07 09:37:42 +00:00
commit 0c60fa36de
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ export function DocumentLayout({ children, documentType, actionMode }: DocumentL
sidebar={null}
drawerApp={privateUser ? <DrawerApp customAppSettings={<DocsQuickSettings />} /> : null}
>
<PrivateMainArea hasToolbar>
<PrivateMainArea hasToolbar className="[&>div]:h-full">
{children}
<DocumentSizeLimitModal documentType={documentType} />
</PrivateMainArea>

View file

@ -49,7 +49,7 @@ const PrivateMainAreaBase = (
>
<div
className={clsx(
'flex flex-nowrap w-full h-full',
'flex flex-nowrap w-full',
drawerSidebar ? 'h-full relative overflow-hidden' : undefined,
isProminent ? 'ui-prominent' : undefined
)}