diff --git a/src/sass/_animations.scss b/src/sass/_animations.scss index d6c0bf0..20f3675 100644 --- a/src/sass/_animations.scss +++ b/src/sass/_animations.scss @@ -1,15 +1,15 @@ .modal-content, .focus-in { - animation: focus-in 0.3s cubic-bezier(0.550, 0.085, 0.680, 0.530) both; + animation: focus-in 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) both; } - @keyframes focus-in { - 0% { - filter: blur(12px); - opacity: 0; - } - 100% { - filter: blur(0px); - opacity: 1; - } +@keyframes focus-in { + 0% { + filter: blur(12px); + opacity: 0; } + 100% { + filter: blur(0px); + opacity: 1; + } +}