Commit 79f2606c1dae17d0bc51f2254cd870fb424d2d22

Authored by Benjamin Rodriguez
1 parent 3116e27cb1
Exists in master

arreglos de espacios

Showing 1 changed file with 10 additions and 10 deletions   Show diff stats
src/sass/_animations.scss
1 .modal-content, 1 .modal-content,
2 .focus-in { 2 .focus-in {
3 animation: focus-in 0.3s cubic-bezier(0.550, 0.085, 0.680, 0.530) both; 3 animation: focus-in 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
4 } 4 }
5 5
6 @keyframes focus-in { 6 @keyframes focus-in {
7 0% { 7 0% {
8 filter: blur(12px); 8 filter: blur(12px);
9 opacity: 0; 9 opacity: 0;
10 }
11 100% {
12 filter: blur(0px);
13 opacity: 1;
14 }
15 } 10 }
11 100% {