Skip to content

Commit

Permalink
fix: DAH-2978 remove unnecessary padding (#2434)
Browse files Browse the repository at this point in the history
* fix: DAH-2978 remove unnecessary padding

* fix: DAH-2978 fix spacing from PA review
  • Loading branch information
tallulahkay authored Dec 7, 2024
1 parent 6a41931 commit 3d198ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,7 @@ exports[`<HowToApply /> renders HowToApply component 1`] = `
Applications open: December 31, 2049 at 5:00 PM Pacific Time
</span>
</div>
<div
class="py-10"
>
<div>
<h2
class="text-2xl mb-0 font-alt-serif"
>
Expand All @@ -314,7 +312,7 @@ exports[`<HowToApply /> renders HowToApply component 1`] = `
30 minutes or less
</div>
<div
class="pb-10"
class="pt-10"
>
<h2
class="text-2xl mb-0 font-alt-serif"
Expand Down
4 changes: 2 additions & 2 deletions app/javascript/pages/howToApply/how-to-apply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const NotYetOpenMessage = ({ listing }: { listing: RailsSaleListing }) => {

const HowLongItTakesSection = ({ listing }: { listing: RailsSaleListing }) => {
return (
<div className="py-10">
<div>
<Header headerText={t("howToApplyPage.howLongItTakesSection.title")} />
<SubHeader subHeaderText={t("howToApplyPage.howLongItTakesSection.subtitle1")} />
{t("howToApplyPage.howLongItTakesSection.p1")}
Expand Down Expand Up @@ -185,7 +185,7 @@ export const LeasingAgentBox = ({ listing }: { listing: RailsSaleListing }) => {

const BeforeYouStartSection = ({ listing }: { listing: RailsSaleListing }) => {
return (
<div className="pb-10">
<div className="pt-10">
<Header headerText={t("howToApplyPage.beforeYouStartSection.title")} />
<SubHeader subHeaderText={t("howToApplyPage.beforeYouStartSection.subtitle1")} />
<div>{t("howToApplyPage.beforeYouStartSection.eligibilityList.title")}</div>
Expand Down

0 comments on commit 3d198ac

Please sign in to comment.