Add fadeIn style

This commit is contained in:
jeffvli
2022-10-28 13:02:00 -07:00
parent ee8cc14e7e
commit 2352c136a1
+14
View File
@@ -28,3 +28,17 @@ export const coverBackground = css`
background-position: center;
background-size: cover;
`;
export const fadeIn = css`
animation: fadein 0.3s;
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
`;