From 77d787340980f215c876e78ead99ce02abc27d63 Mon Sep 17 00:00:00 2001 From: kkatusic Date: Fri, 4 Oct 2024 11:27:56 +0200 Subject: [PATCH] Fix/success email verification - missed one media query --- src/components/views/verification/EmailVerificationIndex.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/views/verification/EmailVerificationIndex.tsx b/src/components/views/verification/EmailVerificationIndex.tsx index c852aa703b..fa67ad2b1e 100644 --- a/src/components/views/verification/EmailVerificationIndex.tsx +++ b/src/components/views/verification/EmailVerificationIndex.tsx @@ -160,7 +160,10 @@ function Rejected() { } const LinkHolder = styled.div` - ${mediaQueries.tablet} { + ${mediaQueries.mobileS} { margin-bottom: 205px; } + ${mediaQueries.laptopS} { + margin-bottom: 0; + } `;