Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added closed apps changes #15

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/sections/Timer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ const TimerHero: React.FC = () => {
<div className={s.hero__timer} id="home">
<div className={s.hero__timer__header}>
<div className={s.hero__timer__header}>
<p>Countdown To</p>
<h1>Fall 2023 Project Application Opening</h1>
{/* <p>Countdown To</p> */}
<h1>Fall 2023 Project Application Closed</h1>
</div>

<div className={s.hero__timer__time}>
Expand Down Expand Up @@ -93,9 +93,9 @@ const TimerHero: React.FC = () => {
<div className={s.description} id="apply">
<div className={s.description__info}>
<a href={projects_app} target="_blank"><button>
Apply Now
Closed
</button></a>
{/* <p>The application for ACM Projects is now closed. Applications will reopen in Fall 2023.</p> */}
<p>The application for ACM Projects is now closed. Applications will reopen in Fall 2023.</p>
<div className={s.description__info__logo}>
<img src={ACMLogo.src} alt="ACM Logo" />

Expand Down
5 changes: 3 additions & 2 deletions src/sections/Timer/style.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,15 @@
font-size: 18px;

button {
width: 100% !important;
width: 100%;
height: 80px;
border-radius: 40px;
border: none;
margin-bottom: 2rem;
font-size: 32px;
color: v.$darker-white;
background-color: v.$blue-ap;
// background-color: v.$blue-ap; for when it is open
background-color: v.$red-warning;
cursor: pointer;
}
button:hover {
Expand Down
Loading