Jaime Ramírez
2020-06-11 d4efcf556bee5599b87a18da9420df2143e1c757
commit | author | age
65919c 1 .logo {
JR 2     height: 2.5rem;
3 }
4
5
6 @keyframes popupFadeIn {
7     from {
8         transform: translateY(-50%);
9         opacity: 0;
10     }
11     to {
12         transform: translateY(0);
13         opacity: 1;
14     }
15 }
16
17 .popup {
18     animation-name: popupFadeIn;
19     animation-duration: .3s;
20 }