remove max width from bookings page (#10126)

Co-authored-by: rkreddy99 <rreddy@e2clouds.com>
pull/10007/head^2
Rama Krishna Reddy 2023-07-13 22:47:02 +05:30 committed by GitHub
parent df686370ab
commit c23a2102f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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>
);