updated layout style

This commit is contained in:
victorAnumudu
2024-04-03 17:55:55 +01:00
parent 5e0d21b5dd
commit a7e97e1890
8 changed files with 111 additions and 56 deletions
+8 -6
View File
@@ -7,13 +7,15 @@ interface GetStartedLayoutProps {
const GetStartedLayout: React.FC<GetStartedLayoutProps> = ({ children }) => {
return (
<div className="relative">
<Header hideSidebar={true} hideMenu={true} />
<div className="flex flex-col min-h-[85vh] justify-between">
<div className="containerMode mb-[5.4375rem]">
<div className='sticky top-0 bg-white'>
<Header hideSidebar={true} hideMenu={true} />
</div>
<div className="flex flex-col min-h-[70vh] justify-between">
{children}
<div className="self-end w-full">
<Footer />
</div>
</div>
<div className="fixed bottom-0 left-0 bg-white w-full">
<Footer />
</div>
</div>
);