Skip to content

Commit

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

0 comments on commit 24e66e5

Please sign in to comment.