Skip to content

Commit

Permalink
🔀 Merge pull request #26 from AssistantApps/develop
Browse files Browse the repository at this point in the history
🔖 2.0.16
  • Loading branch information
Khaoz-Topsy authored Oct 2, 2024
2 parents ad4d83a + 66ef433 commit 2151145
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cassette-beasts-extract",
"version": "2.0.15",
"version": "2.0.16",
"description": "Website generated from data & images extracted from the Cassette Beasts",
"scripts": {
"dev": "astro dev",
Expand Down
6 changes: 5 additions & 1 deletion src/components/monster/MonsterLocationRow.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ if (data.habitat_coords.length > 0) {

<tr>
<td class="overworld ta-center">
<LazyImage src={data.overworldSprite} classes="remaster-image" alt="overworld" />
{
data.overworldSprite != null && (
<LazyImage src={data.overworldSprite} classes="remaster-image" alt="overworld" />
)
}
</td>
<td class="name">
{
Expand Down
6 changes: 2 additions & 4 deletions src/pages/[locale]/monsters/_id.scss
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,8 @@
text-align: center;

img {
height: auto;
max-height: 3em;
min-width: 1.5rem;
// margin: 0 auto;
width: auto;
height: 2.5rem;
}
}

Expand Down

0 comments on commit 2151145

Please sign in to comment.