From 1faf8f076373c78ca1c258f59802350221ae6e73 Mon Sep 17 00:00:00 2001 From: csehviktor Date: Thu, 3 Jul 2025 08:17:19 +0200 Subject: [PATCH] improve style --- ui/src/index.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ui/src/index.css b/ui/src/index.css index 9e99382..7ada108 100644 --- a/ui/src/index.css +++ b/ui/src/index.css @@ -3,3 +3,17 @@ body { @apply bg-[#0a0a0a] text-gray-300; } + +@keyframes pulse-slow { + 0%, + 100% { + opacity: 1; + } + 50% { + opacity: 0.6; + } +} + +.animate-pulse-slow { + animation: pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; +}