remove max width from bookings page (#10126)

Co-authored-by: rkreddy99 <rreddy@e2clouds.com>
This commit is contained in:
Rama Krishna Reddy
2023-07-13 19:17:02 +02:00
committed by GitHub
co-authored by rkreddy99
parent df686370ab
commit c23a2102f4
@@ -36,14 +36,14 @@ export default function BookingLayout({
}: { children: React.ReactNode } & ComponentProps<typeof Shell>) {
return (
<Shell {...rest} hideHeadingOnMobile>
<div className="flex max-w-6xl flex-col">
<div className="flex flex-col">
<div className="flex flex-col flex-wrap lg:flex-row">
<HorizontalTabs tabs={tabs} />
<div className="max-w-full overflow-x-auto xl:ml-auto">
<FiltersContainer />
</div>
</div>
<main className="w-full max-w-6xl">{children}</main>
<main className="w-full">{children}</main>
</div>
</Shell>
);