From e26f45c249dcb8d2129f1f01f65b3a5244dd5fd1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 8 May 2026 10:51:57 +0000 Subject: [PATCH] Switch to version 15: modified src/styles/animations.css --- src/styles/animations.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/styles/animations.css b/src/styles/animations.css index 7017508..d9bf047 100644 --- a/src/styles/animations.css +++ b/src/styles/animations.css @@ -212,3 +212,18 @@ 77% { opacity: 0.05; } 88% { opacity: 0; } } + +@keyframes pulse-slow { + 0%, 100% { + transform: scale(1); + opacity: 0.5; + } + 50% { + transform: scale(1.1); + opacity: 0.7; + } +} + +.animate-pulse-slow { + animation: pulse-slow 8s infinite ease-in-out; +}