This commit is contained in:
LifeAdventurer
2025-03-20 08:37:08 +00:00
parent 80766e6539
commit 5d526b5bb7
2 changed files with 6 additions and 1 deletions

View File

@@ -1 +1 @@
{ "commit_hash": "ea18eb8057b6d7ab8feefd88b5f973f902ac52fa" }
{ "commit_hash": "4eb9212a23eafc57606c9150f2a52c5e45b149ba" }

View File

@@ -60,3 +60,8 @@ darkModeIcon.onclick = () => {
darkModeIcon.classList.toggle("bx-sun");
document.body.classList.toggle("dark-mode");
};
// temporary
let max_height = -1;
document.querySelectorAll('.card-body').forEach(el => max_height = Math.max(max_height, el.offsetHeight));
document.querySelectorAll('.card-body').forEach(el => el.style.height = `${max_height}px`);