fix: repair miyuko's button being stretched for some reason
This commit is contained in:
parent
3a6d718d5f
commit
0c91658331
1 changed files with 9 additions and 1 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue