From d6cc65764e1b9e35dccf536763679ecab4ad410e Mon Sep 17 00:00:00 2001 From: Rishi <148757583+rishirishhh@users.noreply.github.com> Date: Sat, 28 Sep 2024 14:04:30 +0530 Subject: [PATCH] Update script.js --- applications/script.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/applications/script.js b/applications/script.js index c483235c..0f9e3dfb 100644 --- a/applications/script.js +++ b/applications/script.js @@ -365,6 +365,13 @@ function createApplicationCard({ application, dev }) { function updateTotalCount(total, status) { if (total > 0) { totalCountElement.textContent = `Total ${status} applications: ${total}`; + totalCountElement.style.paddingTop = '24px'; + totalCountElement.style.paddingBottom = '24px'; + totalCountElement.style.width = '58%'; + totalCountElement.style.maxWidth = '800px'; + totalCountElement.style.boxSizing = 'border-box'; + totalCountElement.style.textAlign = 'center'; + totalCountElement.style.fontSize = '1.5rem'; totalCountElement.classList.remove('hidden'); } }