_animations.scss 254 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 .modal-content, .focus-in { animation: focus-in 0.3s cubic-bezier(0.550, 0.085, 0.680, 0.530) both; } @keyframes focus-in { 0% { filter: blur(12px); opacity: 0; } 100% { filter: blur(0px); opacity: 1; } }