Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing button clicking and expire verify code page #4826

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// 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.
15 changes: 13 additions & 2 deletions src/components/views/verification/EmailVerificationIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ function Rejected() {
This link is expired or not exist anymore, you have to verify
your email again.
</Lead>
<VCLeadContainer>
<VCLeadContainerHolder>
<Lead>
please go to the verify status form under personal info and
request a new verification email!
</Lead>
</VCLeadContainer>
</VCLeadContainerHolder>

<VCImageContainer>
<Link href='/'>
Expand All @@ -160,6 +160,17 @@ function Rejected() {
}

const LinkHolder = styled.div`
position: relative;
z-index: 1000;
${mediaQueries.mobileS} {
margin-bottom: 205px;
}
${mediaQueries.laptopS} {
margin-bottom: 0;
}
`;

const VCLeadContainerHolder = styled(VCLeadContainer)`
${mediaQueries.mobileS} {
margin-bottom: 205px;
}
Expand Down
Loading