diff --git a/htdocs/js/Problem/problem.scss b/htdocs/js/Problem/problem.scss index 61eb500437..8cf7bc03d6 100644 --- a/htdocs/js/Problem/problem.scss +++ b/htdocs/js/Problem/problem.scss @@ -164,6 +164,19 @@ border-radius: 50%; background-color: var(--bs-warning); padding: 0.25rem; + animation: flash-in 1s alternate 3; + + @keyframes flash-in { + 0% { + filter: brightness(2); + opacity: 0.5; + } + + 50% { + filter: brightness(2); + opacity: 1; + } + } } }