diff --git a/sites/shared/components/base-layout.mjs b/sites/shared/components/base-layout.mjs index 20a10a6b7cd..cb3753105ee 100644 --- a/sites/shared/components/base-layout.mjs +++ b/sites/shared/components/base-layout.mjs @@ -11,14 +11,16 @@ export const BaseLayout = ({ children = [] }) => ( * The left column of the default layout */ export const BaseLayoutLeft = ({ children = [] }) => ( -
{children}
+
+ {children} +
) /* * The right column of the default layout */ export const BaseLayoutRight = ({ children = [] }) => ( -
{children}
+
{children}
) /*