Skip to content

Commit

Permalink
Fix/success email verification - missed one media query
Browse files Browse the repository at this point in the history
  • Loading branch information
kkatusic committed Oct 4, 2024
1 parent 24c388b commit 77d7873
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 77d7873

Please sign in to comment.