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

chore - improve reset password hint #89

Merged
merged 2 commits into from
Apr 4, 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
5 changes: 3 additions & 2 deletions src/pages/ResetPassword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,10 @@ export const ResetPassword = () => {
<ul>
<li>at least 12 characters long,</li>
<li>
a combination of uppercase letters, lowercase letters,
numbers, and symbols.
a combination of uppercase letters, lowercase letters and
numbers
</li>
<li>at least one symbol from: <span className="CodeSnippet">! @ # $ % ^ &amp; *</span></li>
</ul>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ body {
list-style-type: disc;
margin-left: pxToRem(8px);
}

.CodeSnippet {
font-family: var(--font-family-monospace);
}
}

form {
Expand Down
Loading