chore: update default layout style.

This commit is contained in:
Prateek Shourya 2024-05-01 17:33:25 +05:30
parent d26c2fd6de
commit aa90cfef92

View File

@ -13,16 +13,14 @@ export const DefaultLayout: FC<TDefaultLayout> = (props) => {
const { children } = props;
return (
<div className="relative h-screen max-h-max w-full overflow-hidden overflow-y-auto flex flex-col">
<div className="flex-shrink-0 h-[120px]">
<div className="relative h-full container mx-auto px-5 lg:px-0 flex items-center justify-between gap-5 z-50">
<div className="flex items-center gap-x-2">
<Image src={BluePlaneLogoWithoutText} height={30} width={30} alt="Plane Logo" className="mr-2" />
<span className="text-2xl font-semibold sm:text-3xl">Plane</span>
</div>
<div className="h-screen w-full overflow-hidden overflow-y-auto flex flex-col">
<div className="container h-[100px] flex-shrink-0 mx-auto px-5 lg:px-0 flex items-center justify-between gap-5 z-50">
<div className="flex items-center gap-x-2">
<Image src={BluePlaneLogoWithoutText} height={30} width={30} alt="Plane Logo" className="mr-2" />
<span className="text-2xl font-semibold sm:text-3xl">Plane</span>
</div>
</div>
<div className="w-full flex-grow">{children}</div>
<div className="w-full px-5 lg:px-0 mb-[100px] flex-grow">{children}</div>
</div>
);
};