Skip to content

Commit

Permalink
chore(SLB-288): remove repeated padding
Browse files Browse the repository at this point in the history
  • Loading branch information
HagerDakroury committed May 14, 2024
1 parent eda31f1 commit 40fd77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/components/Organisms/PageDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function PageDisplay(page: PageFragment) {
<PageTransition>
<div>
{page.hero ? <PageHero {...page.hero} /> : null}
<div className="bg-white pt-5 pb-12 lg:px-8 container-page">
<div className="bg-white container-page">
<div className="text-base leading-7 text-gray-700">
{page?.content?.filter(isTruthy).map((block, index) => {
switch (block.__typename) {
Expand Down

0 comments on commit 40fd77a

Please sign in to comment.