Skip to content

Commit

Permalink
Merge pull request #8 from christianjtr/develop
Browse files Browse the repository at this point in the history
Add missing media query
  • Loading branch information
christianjtr authored Mar 31, 2024
2 parents 24e66e5 + fed26df commit 03c6c40
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/PokemonEvolution.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@
}
}
@media screen and (min-width: 375px) and (max-width: 425px) {
.pokemon-evolution-container {
grid-template-columns: 1fr;
}
}
@media screen and (min-width: 320px) and (max-width: 375px) {
.pokemon-evolution-container {
grid-template-columns: 1fr;
Expand Down

0 comments on commit 03c6c40

Please sign in to comment.