fix: buttons not working
This commit is contained in:
19
src/App.css
19
src/App.css
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user