From 1f6dab1a9cc1cac62481b49fbf277d562263af5e Mon Sep 17 00:00:00 2001 From: "dhanush.s" Date: Fri, 26 Sep 2025 12:34:47 +0530 Subject: [PATCH] feat: animation --- index.html | 2 -- main.css | 3 ++- main.js | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index afbebbb..4479a90 100644 --- a/index.html +++ b/index.html @@ -399,7 +399,6 @@ -
@@ -422,7 +421,6 @@
- diff --git a/main.css b/main.css index f2e3018..ed36394 100644 --- a/main.css +++ b/main.css @@ -916,7 +916,7 @@ .footer { background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); color: white; - padding: 60px 0 30px 0; + padding: 60px 0 0; font-size: 14px; } @@ -1099,6 +1099,7 @@ font-size: 12px; color: #94a3b8; text-align: left; + background: white; } .footer-bottom-links { diff --git a/main.js b/main.js index d7d7361..56c7f40 100644 --- a/main.js +++ b/main.js @@ -225,6 +225,6 @@ const observer = new IntersectionObserver((entries) => { entry.target.classList.add('visible'); } }); -}, { threshold: 0.2 }); // 20% visible +}, { threshold: 0.2 }); statItems.forEach(item => observer.observe(item));