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

Fix landing page css #186

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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/components/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ export default function Hero({ upcomingEvents, eventsLoading }: HeroProps) {
<h1 className="text-white leading-[4rem]">
UIUC&apos;s Largest Computer Science Organization
</h1>
<p className="text-xl mb-8">
<p className="text-xl ">
For over 50 years, ACM@UIUC has been a hub for innovation and
leadership for students everywhere. Our inclusivity has created a
strong network of students and alumni, bringing their diverse
interests to ACM.
</p>
<div className="flex flex-col max-sm:items-center sm:flex-row gap-4">
<div className="flex flex-col max-sm:items-center sm:flex-row gap-4 mb-8">
<a
className="flex flex-col w-full sm:w-fit px-12 py-3 items-center text-white text-center text-2xl rounded-full bg-primary hover:bg-secondary transition-all"
className="flex flex-col w-full sm:w-fit md:px-10 px-12 py-3 items-center text-white text-center text-2xl rounded-full bg-primary hover:bg-secondary transition-all"
href="/membership"
target="_blank"
rel="noopener noreferrer"
Expand All @@ -101,7 +101,7 @@ export default function Hero({ upcomingEvents, eventsLoading }: HeroProps) {
</a>
<div className="flex flex-row gap-4">
<a
className="flex flex-col w-full sm:w-fit px-8 md:ml-20 py-3 items-center text-primary text-center text-2xl rounded-full bg-surface-000 hover:bg-surface-150 transition-all"
className="flex flex-col w-full sm:w-fit px-8 xl:ml-20 py-3 items-center text-primary text-center text-2xl rounded-full bg-surface-000 hover:bg-surface-150 transition-all"
href="https://go.acm.illinois.edu/donate"
title="Donate"
target="_blank"
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@ export default function Navbar() {
Resources
</NavLink>
</li>
<li>
{/* <li>
<NavLink
href="/open-house"
onClick={uncheck}
>
Open House
</NavLink>
</li>
</li> */}
</ul>
</nav>
</div>
Expand Down