feat(*): Add clarifying copy

This commit is contained in:
Josh Creek
2024-07-14 18:42:59 +01:00
parent e371e4b813
commit dbafe342b7
2 changed files with 3 additions and 0 deletions
@@ -139,6 +139,7 @@
<div class="dex-column additional-details-container"> <div class="dex-column additional-details-container">
{#if showOrigins} {#if showOrigins}
<div class="bg-white text-black rounded-lg p-4 mb-2"> <div class="bg-white text-black rounded-lg p-4 mb-2">
<h3 class="text-xl font-semibold mb-4">Origin Dex Requirements</h3>
<p><strong>Region to Catch In:</strong> {pokedexEntry.regionToCatchIn}</p> <p><strong>Region to Catch In:</strong> {pokedexEntry.regionToCatchIn}</p>
<p><strong>Games to catch in:</strong></p> <p><strong>Games to catch in:</strong></p>
<ul class="list-disc list-inside"> <ul class="list-disc list-inside">
+2
View File
@@ -160,8 +160,10 @@
<button class="btn btn-sm" on:click={() => toggleForms()}>Toggle Forms</button> <button class="btn btn-sm" on:click={() => toggleForms()}>Toggle Forms</button>
{showForms ? 'On' : 'Off'} {showForms ? 'On' : 'Off'}
<button class="btn btn-sm" on:click={() => toggleOrigins()}>Toggle Origins</button> <button class="btn btn-sm" on:click={() => toggleOrigins()}>Toggle Origins</button>
{showOrigins ? 'On' : 'Off'}
</div> </div>
<h2 class="text-2xl font-semibold mb-4">Paging</h2>
<div> <div>
<Pagination bind:currentPage bind:itemsPerPage bind:totalPages /> <Pagination bind:currentPage bind:itemsPerPage bind:totalPages />
</div> </div>