Skip to content

Commit 166f23e

Browse files
committed
Make sure the height of the edit query page is 100%
1 parent ee65ea3 commit 166f23e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/webapp/app/components/layout/AppLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function MainBody({ children }: { children: React.ReactNode }) {
2121

2222
/** This container should be placed around the content on a page */
2323
export function PageContainer({ children }: { children: React.ReactNode }) {
24-
return <div className="grid grid-rows-[auto_1fr] overflow-hidden">{children}</div>;
24+
return <div className="grid h-full grid-rows-[auto_1fr] overflow-hidden">{children}</div>;
2525
}
2626

2727
export function PageBody({

0 commit comments

Comments
 (0)