Skip to content

Commit

Permalink
increase margin between sections
Browse files Browse the repository at this point in the history
  • Loading branch information
wbglaeser committed Nov 8, 2024
1 parent b70ef65 commit dc0b162
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions src/screens/landing-page/LandingPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ const LandingPage = () => {
${globalStyles.primaryColor}66 75%,
${globalStyles.primaryColor}33 100%)`,
}}
> <VStack>
<LandingPageTopSection isDesktop={isDesktop}/>
</VStack>
>
<VStack>
<LandingPageTopSection isDesktop={isDesktop}/>
</VStack>
<VStack>
<LandingPageFact isDesktop={isDesktop}/>
</VStack>
Expand All @@ -48,12 +49,12 @@ const LandingPage = () => {
</VStack>
)
}
<VStack id="funding">
<LandingPageFunding isDesktop={isDesktop}/>
</VStack>
<VStack id="about-us">
<LandingPageTeam isDesktop={isDesktop}/>
</VStack>
<VStack id="funding">
<LandingPageFunding isDesktop={isDesktop}/>
</VStack>
<VStack id="find-your-benefits">
<LandingPageFooter isDesktop={isDesktop}/>
</VStack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const LandingPageSectionWrapper = ({backgroundColor= null, isDesktop, isTop = fa
const verticalPadding = isDesktop
? isTop
? '16px'
: '60px'
: '80px'
: isTop
? '28px'
: '60px';
Expand Down

0 comments on commit dc0b162

Please sign in to comment.