Commit eb5847e3c13040a7bdf790a5cfd4364c7e0b3bed
1 parent
041576a49d
Exists in
master
and in
1 other branch
cambio formato trutas git
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.55, 0.085, 0.68, 0.53) both; | 3 | animation: focus-in 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) both; |
4 | } | 4 | } |
5 | |||
6 | @keyframes focus-in { | 5 | @keyframes focus-in { |
7 | 0% { | 6 | 0% { |
8 | filter: blur(12px); | 7 | filter: blur(12px); |
9 | opacity: 0; | 8 | opacity: 0; |
10 | } | 9 | } |
11 | 100% { | 10 | 100% { |
12 | filter: blur(0px); | 11 | filter: blur(0px); |
13 | opacity: 1; | 12 | opacity: 1; |
14 | } | 13 | } |
15 | } | 14 | } |
16 | 15 |