From 5b654d0594b4c8a2684b6d3b9fcaf4cd06113eea Mon Sep 17 00:00:00 2001 From: leomet07 Date: Thu, 7 Nov 2024 20:09:44 -0500 Subject: [PATCH] Add due dates to website too --- pages/about/recruitments.tsx | 1 + styles/Recruitments.module.css | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/pages/about/recruitments.tsx b/pages/about/recruitments.tsx index d3fa911..c63cfb1 100644 --- a/pages/about/recruitments.tsx +++ b/pages/about/recruitments.tsx @@ -148,6 +148,7 @@ function RecruitmentPage() { )} + {department.applicationDueDate &&

Due {department.applicationDueDate}

} ))} diff --git a/styles/Recruitments.module.css b/styles/Recruitments.module.css index c904f59..300cd2a 100644 --- a/styles/Recruitments.module.css +++ b/styles/Recruitments.module.css @@ -53,4 +53,8 @@ #departments { grid-template-columns: repeat(1, 1fr); } +} + +.due_date { + margin-top: 0.25rem; } \ No newline at end of file