summaryrefslogtreecommitdiff
path: root/app/views/pokedex/show.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/pokedex/show.html.erb')
-rw-r--r--app/views/pokedex/show.html.erb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/views/pokedex/show.html.erb b/app/views/pokedex/show.html.erb
index bcff932..4d5545b 100644
--- a/app/views/pokedex/show.html.erb
+++ b/app/views/pokedex/show.html.erb
@@ -2,9 +2,11 @@
<h1>Pokédex</h1>
<div class="flex flex-wrap gap-4">
- <% Pokemon.where(pokedex_num: 1..151).order(:pokedex_num).each do |pokemon| %>
- <div class="flex flex-col flex-auto items-center w-[100px] bg-orange-200 rounded">
- <div class="flex-1 text-display">No. <%= pokemon.pokedex_num %></div>
+ <% Pokemon.order(:pokedex_num).each do |pokemon| %>
+ <% break if pokemon.pokedex_num.to_i > 251 %>
+ <div class="flex flex-col flex-auto items-center w-[100px] bg-white
+ border border-orange-900 rounded shadow">
+ <div class="flex-1 text-display text-center">No. <%= pokemon.pokedex_num %></div>
<div class="flex-grow flex flex-col justify-around">
<%= image_tag "sprites/pokemon/#{pokemon.pokedex_num}.png" %>
</div>