This commit is contained in:
idler-wheel
2025-03-30 09:25:53 -04:00
parent 647a915953
commit 842496c053
3 changed files with 62 additions and 98 deletions

19
React/src/app/styles.css Normal file
View File

@@ -0,0 +1,19 @@
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animate-fadeIn {
animation: fadeIn 1s ease-in-out;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
}