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; +}