_animations.scss 229 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 .modal-content, .focus-in { 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; } }