Skip to content

Commit

Permalink
style(SLB-295): adjust max width settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Luqmaan Essop committed May 14, 2024
1 parent e5a9d47 commit c184b4a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ui/src/components/Organisms/PageDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export function PageDisplay(page: PageFragment) {
return (
<PageTransition>
<div>
{!page.hero && <BreadCrumbs className="pt-5 mx-auto px-3.5" />}
{!page.hero && (
<BreadCrumbs className="pt-5 mx-auto max-w-screen-xl px-3.5" />
)}
{page.hero && <PageHero {...page.hero} />}
<div className="bg-white pt-5 pb-12 px-6 lg:px-8">
{page.hero && <BreadCrumbs className="mx-auto max-w-3xl" />}
Expand Down

0 comments on commit c184b4a

Please sign in to comment.