diff --git a/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte b/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte index 76182d7..c1da965 100644 --- a/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte +++ b/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte @@ -62,6 +62,14 @@ class="dex-entry bg-primary/90 text-primary-content rounded-lg shadow-md p-6 flex flex-col md:flex-row gap-4 mb-4" >
+
+
+

{pokedexEntry.pokemon}

+ #{pokedexEntry.pokedexNumber.toString().padStart(3, '0')} +
+
-
-

{pokedexEntry.pokemon}

- #{pokedexEntry.pokedexNumber.toString().padStart(3, '0')} -
{#if showForms} @@ -239,7 +241,8 @@ } .sprite-container { - width: 68px; - height: 68px; + width: 100%; + /* height: 300px; */ + aspect-ratio: 1; }