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

fix:resolved sign-up distortion[#2133] #86

Closed
wants to merge 6 commits into from
Closed
Changes from 2 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
12 changes: 8 additions & 4 deletions src/pages/Auth/verify-email/VerifyEmail.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,10 @@
</a>
<p class="text-whiteColor sparrow-fs-14 sparrow-fw-500 mb-0">Go back</p>
</div>

<div class="sparrow-fs-14 sparrow-fs-300">
<div class="d-flex flex-column mx-auto sparrow-fs-14 sparrow-fs-300">
<p>
Check your inbox for the verification code sent to <span
class="sparrow-fw-700 text-whiteColor cursor-pointer">{emailText}</span
Check your inbox for the verification code sent to<span
class="sparrow-fw-700 text-whiteColor cursor-pointer email-text d-inline-block">{emailText}</span
> and enter it below to proceed.
</p>
Copy link
Member

@itsmdasifraza itsmdasifraza Dec 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add a limit to crop the text and display an ellipsis (...) when it overflows?
https://github.com/sparrowapp-dev/sparrow-app-auth/pull/79/files
please refer to this pull request

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@itsmdasifraza I will fix it.

{#if seconds > 0}
Expand Down Expand Up @@ -572,4 +571,9 @@
.cursor-pointer {
cursor: pointer;
}
.email-text {
word-wrap: break-word;
word-break: break-all;
max-width: 100%;
}
</style>
Loading