Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 2 additions & 3 deletions src/components/LandingPage/GlobalStyles/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ ul li:last-child {

@media only screen and (max-width: 767px) {
.home_hero__wrapper {
padding: calc(var(--padding) * 5) 0;
padding: calc(var(--padding) * 8) 0 calc(var(--padding) * 5) 0;
gap: 4rem;
}
}
Expand Down Expand Up @@ -1295,7 +1295,6 @@ ul li:last-child {
margin-top: -14rem;
position: relative;
pointer-events: none;
display: none;
}

.home_app__download::before {
Expand Down Expand Up @@ -2705,7 +2704,7 @@ ul li:last-child {

@media only screen and (max-width: 767px) {
.advertising_hero__wrapper {
padding: calc(var(--padding) * 5) 0;
padding: calc(var(--padding) * 8) 0 calc(var(--padding) * 5) 0;
gap: 5rem;
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/containers/__snapshots__/Main.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ exports[`<Main /> > renders correctly 1`] = `
>
<a
className="plausible-event-name=Download+App+Store"
href="https://www.apple.com/app-store/"
href="https://apps.apple.com/app/apple-store/id1346582238"
rel="noreferrer"
target="_blank"
>
Expand All @@ -415,7 +415,7 @@ exports[`<Main /> > renders correctly 1`] = `
</a>
<a
className="plausible-event-name=Download+Google+Play"
href="https://play.google.com/store/apps/"
href="https://play.google.com/store/apps/details?id=com.pillarproject.wallet"
rel="noreferrer"
target="_blank"
>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ export default function LandingPage() {
</div>
<div className="home_app__download__cta">
<a
href="https://www.apple.com/app-store/"
href="https://apps.apple.com/app/apple-store/id1346582238"
target="_blank"
rel="noreferrer"
className="plausible-event-name=Download+App+Store"
Expand All @@ -326,7 +326,7 @@ export default function LandingPage() {
/>
</a>
<a
href="https://play.google.com/store/apps/"
href="https://play.google.com/store/apps/details?id=com.pillarproject.wallet"
target="_blank"
rel="noreferrer"
className="plausible-event-name=Download+Google+Play"
Expand Down