fix: buttons not working

This commit is contained in:
2025-11-10 12:00:15 +01:00
parent f1d5d6bfee
commit 4c3c4afe27
3 changed files with 68 additions and 46 deletions

View File

@@ -117,3 +117,22 @@ pre {
width: 100%;
}
}
@keyframes dashboard-row-glow {
0% {
background-color: rgba(59, 130, 246, 0.25);
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
}
60% {
background-color: rgba(59, 130, 246, 0.15);
box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.15);
}
100% {
background-color: transparent;
box-shadow: 0 0 0 0 transparent;
}
}
.dashboard-row-highlight {
animation: dashboard-row-glow 2.5s ease forwards;
}