fix: add missing fade-in keyframe

This commit is contained in:
Derrick Hammer 2023-07-26 14:49:17 -04:00
parent 0af6544f9f
commit b1c2455f88
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 9 additions and 0 deletions

View File

@ -113,3 +113,12 @@ header {
transform: rotate(360deg);
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}