Commit e09f905263f37147b9a2c6d824fcf173277fc5d5

Authored by Benjamin Rodriguez
1 parent 2ddbb493cb
Exists in master and in 1 other branch develop

a

Showing 1 changed file with 0 additions and 1 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.550, 0.085, 0.680, 0.530) 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 } 10 }
11 100% { 11 100% {
12 filter: blur(0px); 12 filter: blur(0px);
13 opacity: 1; 13 opacity: 1;
14 } 14 }
15 } 15 }
16