Skip to content

Commit

Permalink
commit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
btebe committed Apr 4, 2022
1 parent 0ac0a21 commit 89e3dbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/verifyEmail/EmailVerify.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function EmailVerify() {
}, [param]);
return (
<div className={styles.page_con}>
{loading && <p>Loading...</p>}
{loading && <p className={styles.load}>Loading...</p>}
{!loading && validUrl ? (
<div className={styles.page_con}>
<h1>Email verified successfully</h1>
Expand Down
5 changes: 5 additions & 0 deletions src/components/verifyEmail/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
margin-top: 10px;
cursor: pointer;
}
.load {
font-size: 14px;
color: #002945;
padding: 15px;
}

/**
NOT FOUND PAGE
Expand Down

0 comments on commit 89e3dbf

Please sign in to comment.