2 Commits

Author SHA1 Message Date
zach
f0ae59467a Merge branch 'master' of papi.tkpups.com:tmiller/pokemon 2026-03-03 13:38:20 -05:00
zach
dcf1558d7e only show set name above mobile, cleanup columns on 404 2026-03-03 13:36:11 -05:00
2 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ const pokemonName = pokemon?.Name || "Unknown Pokémon";
Return to the <a href="/">home page</a> or search for another <a href="/pokemon">Pokémon</a>.
</p>
</div>
<div class="col-12 col-md-4 offset-md-2">
<div class="col-12 col-md-5 offset-md-1">
<div class="alert alert-warning border p-2" role="alert">
<h4 class="alert-heading">Who's that Pokémon?</h4>
<p class="mb-0">Click the image to reveal.</p>

View File

@@ -225,8 +225,8 @@ const facets = searchResults.results.slice(1).map((result: any) => {
))}
</div>
<div class="h5 my-0">{card.productName}</div>
<div class="d-flex flex-row lh-1 mt-1">
<div class="text-secondary flex-grow-1">{card.setName}</div>
<div class="d-flex flex-row lh-1 mt-1 justify-content-between">
<div class="text-secondary flex-grow-1 d-none d-md-flex">{card.setName}</div>
<div class="text-secondary">{card.number}</div>
<span class="ps-2 small-icon"><RarityIcon rarity={card.rarityName} /></span>
</div>