Skip to content

Commit

Permalink
fix: use proper class for sidebar headers (#3488)
Browse files Browse the repository at this point in the history
* fix: use proper class for sidebar headers

* fix: modify margin for missing headings
  • Loading branch information
KrissDrawing authored Jun 13, 2023
1 parent eec55d0 commit c5ac2c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sites/public/src/components/listing/GetApplication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const GetApplication = (props: ApplicationsProps) => {
{props.applicationsOpen && props.paperMethod && !!props.paperApplications?.length && (
<>
{props.onlineApplicationURL && <OrDivider bgColor="white" />}
<div className="text-serif-lg">
<div className="text-serif-xl mb-6">
{props.strings?.getAPaperApplication ?? t("listings.apply.getAPaperApplication")}
</div>
<Button
Expand Down
2 changes: 1 addition & 1 deletion sites/public/src/components/listing/SubmitApplication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const SubmitApplication = ({
return (
<>
<section className="aside-block is-tinted bg-gray-100">
<div className="text-serif-lg">{strings.sectionHeader}</div>
<div className="text-serif-xl mb-6">{strings.sectionHeader}</div>
{applicationMailingAddress && (
<>
<Heading priority={3} styleType={"capsWeighted"}>
Expand Down

0 comments on commit c5ac2c9

Please sign in to comment.