From c7b0fce2dcd64e2688e41d9973e8743fc946b990 Mon Sep 17 00:00:00 2001 From: kkatusic Date: Mon, 7 Oct 2024 19:28:42 +0200 Subject: [PATCH 1/2] fixing button clicking and expire verify code page --- next-env.d.ts | 2 +- .../views/verification/EmailVerificationIndex.tsx | 15 +++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/next-env.d.ts b/next-env.d.ts index a4a7b3f5cf..4f11a03dc6 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information. +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/src/components/views/verification/EmailVerificationIndex.tsx b/src/components/views/verification/EmailVerificationIndex.tsx index fa67ad2b1e..84cb2ac0e9 100644 --- a/src/components/views/verification/EmailVerificationIndex.tsx +++ b/src/components/views/verification/EmailVerificationIndex.tsx @@ -138,12 +138,12 @@ function Rejected() { This link is expired or not exist anymore, you have to verify your email again. - + please go to the verify status form under personal info and request a new verification email! - + @@ -160,6 +160,17 @@ function Rejected() { } const LinkHolder = styled.div` + positionn: relative; + z-index: 1000; + ${mediaQueries.mobileS} { + margin-bottom: 205px; + } + ${mediaQueries.laptopS} { + margin-bottom: 0; + } +`; + +const VCLeadContainerHolder = styled(VCLeadContainer)` ${mediaQueries.mobileS} { margin-bottom: 205px; } From 377811aede007aef255e722ed9d41dd585e1c1fb Mon Sep 17 00:00:00 2001 From: kkatusic Date: Wed, 9 Oct 2024 13:10:20 +0200 Subject: [PATCH 2/2] fixing typo in css --- src/components/views/verification/EmailVerificationIndex.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/verification/EmailVerificationIndex.tsx b/src/components/views/verification/EmailVerificationIndex.tsx index 84cb2ac0e9..3df9a7a3dd 100644 --- a/src/components/views/verification/EmailVerificationIndex.tsx +++ b/src/components/views/verification/EmailVerificationIndex.tsx @@ -160,7 +160,7 @@ function Rejected() { } const LinkHolder = styled.div` - positionn: relative; + position: relative; z-index: 1000; ${mediaQueries.mobileS} { margin-bottom: 205px;