mirror of
https://github.com/zoriya/v10.git
synced 2026-08-11 16:40:27 +00:00
fix(site): improve whitespace around links (#913)
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
@@ -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>
|
||||
),
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user