diff --git a/app/app.css b/app/app.css index 8877272..8d5f85f 100644 --- a/app/app.css +++ b/app/app.css @@ -117,6 +117,14 @@ html { animation: pulse-gradient 2s ease-in-out infinite; } +@keyframes rpf-slide-in { + from { transform: translateY(-32px); opacity: 0; } + to { transform: translateY(0); opacity: 1; } +} +.rpf-animate { + animation: rpf-slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both; +} + /* NProgress theme override */ #nprogress .bar { background: var(--electric) !important; diff --git a/app/components/draft/AvailableParticipantsSection.tsx b/app/components/draft/AvailableParticipantsSection.tsx index 443dce1..94e5781 100644 --- a/app/components/draft/AvailableParticipantsSection.tsx +++ b/app/components/draft/AvailableParticipantsSection.tsx @@ -204,7 +204,7 @@ export const AvailableParticipantsSection = memo(function AvailableParticipantsS ? "All Sports" : sportFilters.length === 1 ? sportFilters[0] - : `${sportFilters.length} sports`, + : `${sportFilters.length} Sports`, [sportFilters] ); @@ -268,111 +268,115 @@ export const AvailableParticipantsSection = memo(function AvailableParticipantsS )}
Latest Picks
+ {picks.length === 0 ? ( +No picks yet
+ ) : ( + recentPicks.map((pick, index) => ( +