diff --git a/src/features/Pokedex/Pokedex.tsx b/src/features/Pokedex/Pokedex.tsx
index c3e1b0a..921a2f4 100644
--- a/src/features/Pokedex/Pokedex.tsx
+++ b/src/features/Pokedex/Pokedex.tsx
@@ -55,15 +55,17 @@ const Pokedex = () => {
{isLoadingPokemons ? (
) : (
- sortedFilteredPokemonCardList.map(pokemonCard => (
-
- ))
+
+ {sortedFilteredPokemonCardList.map(pokemonCard => (
+
+ ))}
+
)}
>
);
diff --git a/src/index.css b/src/index.css
index 7951c82..27a2bfe 100644
--- a/src/index.css
+++ b/src/index.css
@@ -44,3 +44,10 @@ code {
align-items: center;
justify-content: center;
}
+
+.all__pokemons {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: center;
+}