mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
feat: Add padding between mob image and name in results page
This commit is contained in:
parent
44d0722cb6
commit
ce3db3b15b
2 changed files with 5 additions and 1 deletions
|
@ -251,6 +251,10 @@ h2 {
|
|||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.left {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.results-list img {
|
||||
height: 100px;
|
||||
object-fit: contain;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<td>
|
||||
<img alt="<?= $mob["name"] ?>" src="/images/mobs/<?= $mob["image"] ?>" />
|
||||
</td>
|
||||
<td>
|
||||
<td class="left">
|
||||
<a target="_blank" href="https://minecraft.wiki/w/<?= str_replace(" ", "_", $mob["name"]) ?>">
|
||||
<?= $mob["name"] ?>
|
||||
</a>
|
||||
|
|
Loading…
Reference in a new issue