new design

This commit is contained in:
fynks 2025-08-22 18:52:46 +05:00
parent c9af19459c
commit c428ecdb94
3 changed files with 2656 additions and 1550 deletions

2315
dist/css/styles.css vendored

File diff suppressed because it is too large Load diff

1885
dist/index.html vendored

File diff suppressed because it is too large Load diff

6
dist/js/app.js vendored
View file

@ -313,7 +313,9 @@ class TableManager {
this.elements.container.insertBefore(indicator, this.elements.container.firstChild);
}
indicator.textContent = `Showing ${resultCount} of ${totalCount} services`;
indicator.style.display = 'block';
indicator.style.display = 'block';
indicator.style.textAlign = 'center';
indicator.style.padding = '0.5em 0';
} else if (indicator) {
indicator.style.display = 'none';
}
@ -755,7 +757,7 @@ function setupURLComparison() {
}
function setupScrollAnimations() {
const animatedElements = document.querySelectorAll('.section, .quick-nav-card, .status-card, .referral-card');
const animatedElements = document.querySelectorAll('.section, .status-card, .referral-card');
if (animatedElements.length) Utils.animateOnScroll(animatedElements);
}