Update dashboard.css

This commit is contained in:
DJObleezy 2025-04-02 13:39:09 -07:00 committed by GitHub
parent 504eb88077
commit 353c9567bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -197,3 +197,25 @@
#payoutMiscCard { #payoutMiscCard {
margin-bottom: 60px; 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;
}