Skip to content

Commit

Permalink
Changed z-index of Sponsor section to allow for user selectability
Browse files Browse the repository at this point in the history
  • Loading branch information
meleongg committed Oct 8, 2023
1 parent fed546d commit 2b753d3
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/sections/Sponsor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@ const BgSectionContainer = styled(SectionContainer)`

const StyledTitle = styled(Header2)`
text-align: center;
color: #FFF;
color: #fff;
font-size: 3rem;
padding-top: 33rem;
position: relative;
z-index: 3;
${(p) => p.theme.mediaQueries.mobile} {
${p => p.theme.mediaQueries.mobile} {
font-size: 2em;
padding-top: 12rem;
}
Expand Down Expand Up @@ -91,22 +93,26 @@ const Sponsors = styled.div`
justify-content: center;
align-items: center;
padding-top: 2.5vw;
position: relative;
z-index: 3;
`

const SponsorLogo = styled.img`
width: 37.5vw;
`

const PushinP = styled.p`
color: #FFF;
color: #fff;
text-align: left;
width: 30vw;
min-width: 500px;
margin: 0 auto;
padding-top: 2rem;
max-width: 800px;
${(p) => p.theme.mediaQueries.mobile} {
position: relative;
z-index: 3;
${p => p.theme.mediaQueries.mobile} {
display: none;
}
`
Expand Down

0 comments on commit 2b753d3

Please sign in to comment.