diff --git a/src/components/events/EventBadges/style.module.scss b/src/components/events/EventBadges/style.module.scss index 9908018a..168e7122 100644 --- a/src/components/events/EventBadges/style.module.scss +++ b/src/components/events/EventBadges/style.module.scss @@ -23,13 +23,18 @@ animation: pulse 1s ease-in-out infinite alternate; @keyframes pulse { - 0% { opacity: 0 } - 100% {opacity: 1 } + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } } } &::before { - animation: pulse2 2s ease-out forwards infinite; + animation: pulse2 2s ease-out reverse infinite; border: 2px solid vars.$danger-1; border-radius: 5px; content: ''; @@ -37,16 +42,16 @@ @keyframes pulse2 { 0% { - filter: blur(0); - inset: 0; - opacity: 1; - } - - 100% { filter: blur(2px); inset: -0.75rem; opacity: 0; } + + 100% { + filter: blur(0); + inset: 0; + opacity: 1; + } } } }