Skip to content

Commit

Permalink
Merge pull request #176 from uclaacm/join-disable
Browse files Browse the repository at this point in the history
  • Loading branch information
burturt authored Jun 15, 2024
2 parents 8dd6f2b + 68939e4 commit cb04864
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pages/join.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ export default function Join() {
out to officially join ACM Cyber!
</p>

<button className={styles.membershipForm}>
<button className={styles.membershipForm} disabled>
<a href="https://www.google.com/a/g.ucla.edu/ServiceLogin?continue=https://docs.google.com/forms/d/e/1FAIpQLSd40YVQqKPlcne_h1NtElVLuFuikdtPirRF8GazpiiAejbnXw/viewform?usp=sf_link">
Spring 2024 Membership Form
Stay tuned for Fall 2024!
</a>
</button>

<button className={styles.membershipForm}>
<a href="https://discord.com/invite/j9dgf2q">
Join our Discord Server
</a>
</button>

Expand Down
8 changes: 8 additions & 0 deletions styles/Join.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ button.membershipForm {
}
}

button.membershipForm:disabled {
pointer-events: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}

button.membershipForm:hover {
background-color: var(--cyber-gold);

Expand Down

0 comments on commit cb04864

Please sign in to comment.