fix: repair miyuko's button being stretched for some reason

This commit is contained in:
BuyMyMojo 2024-12-18 02:06:39 +11:00
parent 3a6d718d5f
commit 0c91658331
Signed by: aria
GPG key ID: 19AB7AA462B8AB3B

View file

@ -1,4 +1,12 @@
---
const { name, image, target } = Astro.props;
---
<a href={`${target}`} target="_blank"><img class="badge" src={`${image}`} alt={`${name}`} decoding="async" /></a>
<a href={`${target}`} target="_blank"><img src={`${image}`} alt={`${name}`} decoding="async" /></a>
<style>
img {
image-rendering: pixelated;
width: 88px;
height: 31px;
padding: 4px;
}
</style>