From 5186e6618a55affb0301cd9734734ed476c17f76 Mon Sep 17 00:00:00 2001 From: celine Date: Mon, 20 Oct 2025 19:33:55 -0400 Subject: [PATCH] prev fix broke doc pages, fixed that lol --- components/Pages/Page.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/components/Pages/Page.tsx b/components/Pages/Page.tsx index 0420eb14..af8e5832 100644 --- a/components/Pages/Page.tsx +++ b/components/Pages/Page.tsx @@ -115,7 +115,7 @@ export const PageWrapper = (props: { ${props.isFocused ? "shadow-md border-border" : "border-border-light"}` } ${props.cardBorderHidden && "sm:h-[calc(100%+48px)] h-[calc(100%+20px)] sm:-my-6 -my-3 sm:pt-6 pt-3"} - ${props.fullPageScroll && "max-w-full"} + ${props.fullPageScroll && "max-w-full "} ${props.pageType === "doc" && !props.fullPageScroll && "w-[10000px] sm:mx-0 max-w-[var(--page-width-units)]"} ${ props.pageType === "canvas" && @@ -127,7 +127,13 @@ export const PageWrapper = (props: { `} > - {props.children} +
+ {props.children} +
{props.pageOptions} -- 2.51.2