Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rishirishhh authored Sep 28, 2024
1 parent cef72b8 commit d6cc657
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions applications/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}
Expand Down

0 comments on commit d6cc657

Please sign in to comment.