-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
85 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
.button { | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 5px; | ||
margin-left: 15px; // To align the button with the other content | ||
margin-top: 15px; | ||
width: 6vw; | ||
height: 6vw; | ||
cursor: pointer; | ||
|
||
@media screen and (max-width: 1152px) { | ||
width: 30vw; | ||
height: 30vw; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,20 +3,17 @@ import styles from "./styles.module.scss"; | |
export function Rejected() { | ||
return ( | ||
<div className={styles.container}> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Unfortunately, we were unable to offer you a spot at | ||
HackIllinois. | ||
</b> | ||
<h1>Rejected</h1> | ||
<p> | ||
Unfortunately, we were unable to offer you a spot at | ||
HackIllinois. | ||
</p> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
<u>[email protected]</u> | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
<p> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
<u>[email protected]</u> | ||
</a>{" "} | ||
if you have any questions! | ||
</p> | ||
</div> | ||
); | ||
|
@@ -25,23 +22,19 @@ export function Rejected() { | |
export function Waitlisted() { | ||
return ( | ||
<div className={styles.container}> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Your application has been waitlisted at this time. If you | ||
are still interested in participating in HackIllinois 2025, | ||
please visit our Help Desk at 4:30pm on Friday, Feb 28rd for | ||
reconsideration opportunities depending on current | ||
capacities. | ||
</b> | ||
<h1>Waitlisted</h1> | ||
<p> | ||
Your application has been waitlisted at this time. If you are | ||
still interested in participating in HackIllinois 2025, please | ||
visit our Help Desk at 4:30pm on Friday, Feb 28rd for | ||
reconsideration opportunities depending on current capacities. | ||
</p> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
<u>[email protected]</u> | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
<p> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
<u>[email protected]</u> | ||
</a>{" "} | ||
if you have any questions! | ||
</p> | ||
</div> | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters