Skip to content

Commit

Permalink
Less subtle pulse on activity completion
Browse files Browse the repository at this point in the history
  • Loading branch information
genericmoniker committed Oct 8, 2023
1 parent cfd1cb1 commit d6f0563
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/Activity.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@
}
#goal-icon {
opacity: 1;
animation: fade 8s ease-in-out infinite;
animation: fade 2s ease-in-out infinite;
}
@keyframes fade {
0%,
100% {
opacity: 0;
opacity: 0.25;
}
50% {
opacity: 0.5;
opacity: 1;
}
}
</style>

0 comments on commit d6f0563

Please sign in to comment.