Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1421 Fix spacing in partnership opps on mobile #1498

Merged
merged 6 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"section7Dropdown3Title": "Can law enforcement get a search warrant to access my data on this site?",
"section7Dropdown3Paragraph": "No. Even if law enforcement were to search this site for your data, there would be no data to find. We do not store or save any of your data, ever. There would be nothing to find.\n\nOnce your data has left our site via download, it is your responsibility to keep your data secure.",
"sectionTitle8": "Partnership opportunities",
"sectionParagraph8": "Expunge Assist is currently looking for partner organizations to refine and tailor the\nproduct to the needs of their organizations. Contact us to learn more."
"sectionParagraph8": "Expunge Assist is currently looking for partner organizations to refine and tailor the product to the needs of their organizations. Contact us to learn more."
},
"before_you_begin_page": {
"header": "Before you begin",
Expand Down
6 changes: 5 additions & 1 deletion products/statement-generator/src/pages/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const useStyles = makeStyles(({ globals, palette, breakpoints, spacing }) =>
opportunitySection: {
backgroundColor: `${palette.primary.lighter}`,
width: '100%',
padding: '100px 80px',
padding: '100px 140px',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
Expand All @@ -134,8 +134,12 @@ const useStyles = makeStyles(({ globals, palette, breakpoints, spacing }) =>
width: '170px',
margin: `${spacing(2)}px auto 0px auto`,
},
[breakpoints.down(breakpoints.values.md)]: {
padding: '48px',
},
[breakpoints.down(breakpoints.values.sm)]: {
padding: '24px',
textAlign: 'left',
},
},
firstSection: {
Expand Down