Skip to content

Commit 48c8c09

Browse files
committed
💄 Fix image aspect ratio in /integrations
1 parent 4de6f0d commit 48c8c09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/src/pages/integrations/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ const databases = await getCollection("databases");
8989
remotePlugins.map((plugin) => (
9090
<a
9191
href={`/integrations/${slugify(plugin.name)}`}
92-
class="flex flex-col p-4 rounded-lg bg-white/10 border border-[#655cc339]"
92+
class="block flex-col p-4 rounded-lg bg-white/10 border border-[#655cc339]"
9393
>
9494
<img
9595
src={plugin.icon}
9696
alt={plugin.display_name}
97-
class="w-10 h-10"
97+
class="max-h-10"
9898
/>
9999
<h2 class="text-lg mt-3">{plugin.display_name}</h2>
100100
<p class="break-words text-sm text-white/60">

0 commit comments

Comments
 (0)