Skip to content

Commit 158ad0a

Browse files
author
Rajat Saxena
committed
Reverted to using div to set the min height
1 parent 7ec970d commit 158ad0a

File tree

1 file changed

+4
-4
lines changed
  • apps/web/components/public/base-layout/template

1 file changed

+4
-4
lines changed

apps/web/components/public/base-layout/template/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@ const Template = (props: TemplateProps) => {
9696
/>
9797
)}
9898
{childrenOnTop && (
99-
<Fragment>
99+
<div className="min-h-screen bg-background">
100100
{children}
101101
{pageWidgets}
102-
</Fragment>
102+
</div>
103103
)}
104104
{!childrenOnTop && (
105-
<Fragment>
105+
<div className="min-h-screen bg-background">
106106
{pageWidgets}
107107
{children}
108-
</Fragment>
108+
</div>
109109
)}
110110
{footer && (
111111
<EditableWidget

0 commit comments

Comments
 (0)