Increase team/graveyard pokemon sprite size

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-08 12:18:37 +01:00
parent da9cf0acd2
commit 76855f4f56

View File

@@ -24,10 +24,10 @@ export function PokemonCard({ encounter, showFaintLevel, onClick }: PokemonCardP
<img <img
src={displayPokemon.spriteUrl} src={displayPokemon.spriteUrl}
alt={displayPokemon.name} alt={displayPokemon.name}
className="w-16 h-16" className="w-25 h-25"
/> />
) : ( ) : (
<div className="w-16 h-16 rounded-full bg-gray-300 dark:bg-gray-600 flex items-center justify-center text-xl font-bold text-gray-600 dark:text-gray-300"> <div className="w-25 h-25 rounded-full bg-gray-300 dark:bg-gray-600 flex items-center justify-center text-xl font-bold text-gray-600 dark:text-gray-300">
{displayPokemon.name[0].toUpperCase()} {displayPokemon.name[0].toUpperCase()}
</div> </div>
)} )}