-
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.
* style rsvp modal content * style pro to general modal * remove modal padding and underline email links
- Loading branch information
1 parent
a6c84d0
commit 908cd5c
Showing
6 changed files
with
119 additions
and
30 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 |
---|---|---|
|
@@ -3,17 +3,17 @@ import styles from "./styles.module.scss"; | |
export function Rejected() { | ||
return ( | ||
<div className={styles.container}> | ||
<p> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Unfortunately, we were unable to offer you a spot at | ||
HackIllinois | ||
</b> | ||
</p> | ||
<p> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
<u>[email protected]</u> | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
|
@@ -26,17 +26,17 @@ export function Rejected() { | |
export function Waitlisted() { | ||
return ( | ||
<div className={styles.container}> | ||
<p> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Unfortunately, we have deferred your application at this | ||
time | ||
</b> | ||
</p> | ||
<p> | ||
<p className={styles.unfortunatelyText}> | ||
<b> | ||
Email us at{" "} | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
<u>[email protected]</u> | ||
</a>{" "} | ||
if you have any questions! | ||
</b> | ||
|
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,12 +1,89 @@ | ||
.buttonGroup { | ||
width: 100%; | ||
width: 70%; | ||
display: flex; | ||
margin-top: 15px; | ||
justify-content: center; | ||
justify-content: space-around; | ||
align-items: center; | ||
gap: 5px; | ||
margin: auto; | ||
|
||
@media (max-width: 468px) { | ||
flex-direction: column; | ||
gap: 15px; | ||
} | ||
} | ||
|
||
.container { | ||
color: black; | ||
color: white; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 4vw; | ||
padding: 20px; | ||
} | ||
|
||
.textBlock { | ||
display: flex; | ||
flex-direction: column; | ||
color: white; | ||
|
||
align-items: center; | ||
gap: 20px; | ||
padding: 20px; | ||
width: 70%; | ||
margin: auto; | ||
text-align: center; | ||
font-size: 1.5vw; | ||
|
||
@media (max-width: 768px) { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.textBlock p { | ||
color: white; | ||
text-align: center; | ||
|
||
@media (max-width: 768px) { | ||
font-size: 3vw; | ||
} | ||
} | ||
|
||
.shiny { | ||
font-size: 3vw; | ||
text-shadow: 0px 4px 20px #ffb23e; | ||
|
||
@media (max-width: 768px) { | ||
font-size: 6vw; | ||
} | ||
} | ||
|
||
.acceptedText { | ||
font-weight: bold; | ||
font-size: 2.5vw; | ||
|
||
@media (max-width: 768px) { | ||
font-size: 5vw; | ||
} | ||
} | ||
|
||
.unfortunatelyText { | ||
font-size: 4vw; | ||
text-align: center; | ||
|
||
@media (max-width: 768px) { | ||
font-size: 6vw; | ||
} | ||
} | ||
|
||
.unfortunatelyText b { | ||
color: white; | ||
} | ||
|
||
.confirmRejectText { | ||
font-size: 4vw; | ||
text-align: center; | ||
|
||
@media (max-width: 768px) { | ||
font-size: 6vw; | ||
} | ||
} |