fix(site): improve whitespace around links (#913)

This commit is contained in:
Darius Cepulis
2026-03-12 08:43:30 -05:00
committed by GitHub
parent 70a9bb56e1
commit f585fe37f6
3 changed files with 3 additions and 8 deletions
+1 -3
View File
@@ -11,6 +11,4 @@ type Props<Tag extends HTMLTag = 'a'> = Polymorphic<{ as: Tag }> & {
const { as: Tag = 'a', class: className, ...props } = Astro.props;
---
<Tag class={twMerge(shared.a, className)} {...props}>
<slot />
</Tag>
<Tag class={twMerge(shared.a, className)} {...props}><slot /></Tag>
@@ -1,7 +1,7 @@
---
title: 'Blog Component Test'
description: 'A dev-only blog post for testing blog components and MDX features'
authors: [darius-cepulis]
authors: [darius-cepulis, steve-heffernan, matthew-mcclure]
devOnly: true
ogImage: '../../assets/blog/2099-12-31-blog-component-test/og.png'
---
@@ -218,4 +218,3 @@ X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
Press <kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>Delete</kbd> to end the session.
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
+1 -3
View File
@@ -96,9 +96,7 @@ const jsonLdSchema = createBlogPostingSchema({
{part.value}
</a>
) : (
<span class="inline-block" data-pagefind-meta="author">
{part.value}
</span>
<span>{part.value}</span>
),
)
}