fix(FriendLink): try moving loading tag to the front
Some checks failed
Deploy to Web Server / deploy (push) Has been cancelled
Some checks failed
Deploy to Web Server / deploy (push) Has been cancelled
This commit is contained in:
parent
638b20d41c
commit
0a85f2f487
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><img src={image} width=176 height=62 alt={`${name}`} class="flex" decoding="async" loading="lazy" /></a>
|
<a href={`${target}`} target="_blank"><img loading="lazy" decoding="async" src={image} width=176 height=62 alt={`${name}`} class="flex" /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue