Skip to content

Commit

Permalink
fix(search landing page): get talking points off edge of screen (#1344)
Browse files Browse the repository at this point in the history
Talking points are currently at edge of screen, lets fix that

![Screen Shot 2024-09-04 at 4 28 58
PM](https://github.com/user-attachments/assets/44d14ce6-4c7e-41a4-8a10-b17ab9f88d9c)
  • Loading branch information
IanKrieger committed Sep 4, 2024
1 parent 536afcd commit e6a1993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/search/SearchLandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function SearchLandingPage() {
gap="50px"
p={1}
>
<Stack direction="column" spacing={3} maxWidth={650} alignSelf="top">
<Stack direction="column" spacing={3} maxWidth={750} alignSelf="top">
<Typography variant="h1" color="white">
<Trans>
Get incremental traffic with paid ads on the world's fastest
Expand Down
2 changes: 1 addition & 1 deletion src/search/SearchTalkingPoints.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function SearchTalkingPoints() {
return (
<Stack
direction={{ xs: "column", lg: "row" }}
justifyContent="space-between"
justifyContent={{ xs: "space-between", lg: "space-evenly" }}
spacing={5}
alignItems="center"
>
Expand Down

0 comments on commit e6a1993

Please sign in to comment.