From 353c9567bb0e63c2d9f8d0c8d896eb85ae70c6f5 Mon Sep 17 00:00:00 2001 From: DJObleezy <156115770+Djobleezy@users.noreply.github.com> Date: Wed, 2 Apr 2025 13:39:09 -0700 Subject: [PATCH] Update dashboard.css --- static/css/dashboard.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/static/css/dashboard.css b/static/css/dashboard.css index edc1dfa..ab5dd7c 100644 --- a/static/css/dashboard.css +++ b/static/css/dashboard.css @@ -197,3 +197,25 @@ #payoutMiscCard { margin-bottom: 60px; } + +/* Add these styles to dashboard.css */ +@keyframes pulse-block-marker { + 0% { + transform: translate(-50%, -50%) rotate(45deg) scale(1); + opacity: 1; + } + + 50% { + transform: translate(-50%, -50%) rotate(45deg) scale(1.3); + opacity: 0.8; + } + + 100% { + transform: translate(-50%, -50%) rotate(45deg) scale(1); + opacity: 1; + } +} + +.chart-container-relative { + position: relative; +}