fix falling neofox

This commit is contained in:
residualentropy 2024-07-27 11:09:14 +02:00
parent 1211ab1740
commit cb481a7423

View file

@ -44,6 +44,7 @@ body {
from { from {
opacity: 1; opacity: 1;
} }
to { to {
opacity: 0; opacity: 0;
} }
@ -159,10 +160,10 @@ a img {
@keyframes fall { @keyframes fall {
0% { 0% {
transform: translateY(0) rotate(0); transform: translateY(-50vh) rotate(0);
} }
100% { 100% {
transform: translateY(200vh) rotate(180deg); transform: translateY(150vh) rotate(180deg);
} }
} }