From 5f56c0cdfee22a0e09181e8c4f3dc239a9c3948b Mon Sep 17 00:00:00 2001 From: juanjo Date: Fri, 9 May 2025 23:09:14 -0400 Subject: [PATCH] Add animations to star elements in background --- public/js/bg.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/js/bg.js b/public/js/bg.js index 2b9f6ad8..c65cddf3 100644 --- a/public/js/bg.js +++ b/public/js/bg.js @@ -70,6 +70,7 @@ height: 1px; border-radius: 50%; box-shadow: ${starsSmall}; + animation: animStar 50s linear infinite; `; } @@ -79,6 +80,7 @@ height: 1.5px; border-radius: 50%; box-shadow: ${starsMedium}; + animation: animateParticle 100s linear infinite; `; } @@ -88,6 +90,7 @@ height: 2px; border-radius: 50%; box-shadow: ${starsLarge}; + animation: animateParticle 150s linear infinite; `; } }