fix: shorten CRISPY animation to 4s, visible for 5s
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled

This commit is contained in:
2025-12-30 22:02:29 +01:00
parent 4f39d068bb
commit c95af66343
2 changed files with 2 additions and 2 deletions

View File

@@ -603,7 +603,7 @@ function runCode() {
elements.previewWrapper?.classList.add("matched"); elements.previewWrapper?.classList.add("matched");
setTimeout(() => { setTimeout(() => {
elements.previewWrapper?.classList.remove("matched"); elements.previewWrapper?.classList.remove("matched");
}, 10000); }, 5000);
updateNavigationButtons(); updateNavigationButtons();
updateProgressDisplay(); updateProgressDisplay();

View File

@@ -595,7 +595,7 @@ code, kbd {
border-radius: var(--border-radius-lg); border-radius: var(--border-radius-lg);
font-weight: bold; font-weight: bold;
font-size: 1.1rem; font-size: 1.1rem;
animation: dvd-bounce 8s ease-in-out infinite; animation: dvd-bounce 4s ease-in-out infinite;
z-index: 10; z-index: 10;
white-space: nowrap; white-space: nowrap;
} }