Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/components/ApplySection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type ApplySectionProps = {

const ApplySection = (props: ApplySectionProps) => (
<div
className="relative mb-[30%] rounded-[10px] bg-white p-5 text-center text-[clamp(16px,_calc(0.15vw+16px),_22px)] font-light leading-[30px] text-[rgb(20,20,20)] md:mb-[5%] md:w-[30%]"
className="relative mb-[30%] rounded-[10px] bg-white p-8 text-center text-[clamp(16px,_calc(0.15vw+16px),_22px)] font-light leading-[30px] text-[rgb(20,20,20)] md:mb-[5%] md:w-[30%]"
data-aos="fade-down"
data-aos-duration="1000"
>
Expand Down
36 changes: 19 additions & 17 deletions src/pageLayouts/ApplyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -295,23 +295,25 @@ const ApplyPage = () => {
width={200}
/>

<h1 className="chonkyHeading chonkyHeading--dynamic chonkyHeading--lessMargin">
Applications
</h1>
<Divider />
<ul className="md:inline-flex">
{applications.map((section, index) => (
<ApplySection
applicationLink={section.applicationLink}
closedStatus={section.closedStatus}
deadline={section.deadline}
description={section.description}
key={index}
role={section.role}
statusIsOpen={section.statusIsOpen}
/>
))}
</ul>
<div className="relative z-10 my-[5%]">
<h1 className="chonkyHeading chonkyHeading--dynamic chonkyHeading--lessMargin">
Applications
</h1>
<Divider />
<ul className="mx-auto flex w-4/5 max-w-[1200px] flex-col justify-between gap-8 md:flex-row">
{applications.map((section, index) => (
<ApplySection
applicationLink={section.applicationLink}
closedStatus={section.closedStatus}
deadline={section.deadline}
description={section.description}
key={index}
role={section.role}
statusIsOpen={section.statusIsOpen}
/>
))}
</ul>
</div>
</div>
</div>
);
Expand Down