Skip to content

Commit

Permalink
hid the register now button and fixed some font bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurikam2003 committed Jul 5, 2024
1 parent 648e59c commit a706457
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions client/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,7 @@ a:hover {
display: none;
}
}

.proxima-nova-text {
font-family: 'Proxima Nova', sans-serif;
}
6 changes: 3 additions & 3 deletions client/src/pages/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ const HomeHeaderButton = () => {
// justifyContent: 'center',
// alignItems: 'center',
// }}
// hidden button xD
style={{
// hidden button xD
style={{
width: '0.px',
height: '0.px',
fontSize: '0px',
opacity: '0',
}}
}}
/>
</div>
<div className="mobile-only">
Expand Down
8 changes: 4 additions & 4 deletions client/src/pages/SignUp/SignUp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,22 +242,22 @@ const PageSignUp = () => {
className={`sign-up-success ${pageState === 'success' ? 'sign-up-success-appear' : ''}`}
>
<div style={{ margin: 'auto auto' }}>
<h2 style="font-family: 'Proxima Nova', sans-serif;">{`Thank you for creating an account, ${
<h2 class="proxima-nova-text">{`Thank you for creating an account, ${
accountObj['preferredName'] === null ||
accountObj['preferredName'] === undefined ||
accountObj['preferredName'] === ''
? accountObj['firstName']
: accountObj['preferredName']
}.`}</h2>
{accountObj['leadur'] === true ? (
<h3 style="font-family: 'Proxima Nova', sans-serif;">
<h3 class="proxima-nova-text">
Check your inbox for an email from tech@orientation.skule.ca for a link to verify your email. Your account will be reviewed and
shortly become an official Leedur account.
</h3>
) : (
<>
<h1 style="font-family: 'Proxima Nova', sans-serif;">You aren&apos;t done just yet!</h1>
<h3 style="font-family: 'Proxima Nova', sans-serif;">
<h1 class="proxima-nova-text">You aren&apos;t done just yet!</h1>
<h3 class="proxima-nova-text">
Check your inbox for an email from tech@orientation.skule.cafor a link to verify your email. You still need to register and
pay for the F!rosh Week event.
</h3>
Expand Down

0 comments on commit a706457

Please sign in to comment.