From 0c91658331f887d72768afc567b8fc6e17350ce4 Mon Sep 17 00:00:00 2001
From: BuyMyMojo <hello@buymymojo.net>
Date: Wed, 18 Dec 2024 02:06:39 +1100
Subject: [PATCH] fix: repair miyuko's button being stretched for some reason

---
 src/components/FriendLink.astro | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/components/FriendLink.astro b/src/components/FriendLink.astro
index f883481..d7351df 100644
--- a/src/components/FriendLink.astro
+++ b/src/components/FriendLink.astro
@@ -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>
\ No newline at end of file
+<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>
\ No newline at end of file