feat: floating fading footer (#3008)

Co-authored-by: thisProjects <wibbet@wobbet.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
Nathan
2023-05-12 22:52:54 +01:00
committed by GitHub
parent 3941bc1a70
commit 3bd45d09f3
4 changed files with 53 additions and 9 deletions

View File

@@ -22,3 +22,17 @@
}
}
}
.fadeIn {
animation: fadein 2s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}