Skip to content

Commit

Permalink
Merge pull request #4819 from Giveth/fix/success_verify_email
Browse files Browse the repository at this point in the history
Fix/success email verification - missed one media query
  • Loading branch information
kkatusic authored Oct 4, 2024
2 parents a39eb2e + 77d7873 commit 92e7be9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/views/verification/EmailVerificationIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ function Rejected() {
}

const LinkHolder = styled.div`
${mediaQueries.tablet} {
${mediaQueries.mobileS} {
margin-bottom: 205px;
}
${mediaQueries.laptopS} {
margin-bottom: 0;
}
`;

0 comments on commit 92e7be9

Please sign in to comment.