Refactor: Enhance Park List View

This commit is contained in:
gpt-engineer-app[bot]
2025-10-28 16:08:32 +00:00
parent ba1c0625b0
commit 48bf6c7823
10 changed files with 659 additions and 72 deletions

View File

@@ -392,3 +392,20 @@ All colors MUST be HSL.
content-visibility: auto;
contain-intrinsic-size: 0 200px;
}
/* Enhanced list view animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fade-in-up {
animation: fadeInUp 0.6s ease-out forwards;
opacity: 0;
}