fix: add missing fade-in keyframe
This commit is contained in:
parent
0af6544f9f
commit
b1c2455f88
|
@ -113,3 +113,12 @@ header {
|
|||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
|
Reference in New Issue