make things more readable in the blog

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2024-09-20 16:00:29 -04:00
parent faed21c3e9
commit b181f6e957
Signed by: xe
SSH Key Fingerprint: SHA256:7EWsWanxCI427bJ0t3CA6LyqXnkPajReCxkUhbpJULU
2 changed files with 5 additions and 1 deletions

View File

@ -52,7 +52,7 @@ export default async function Page({ params }: { params: PageParams }) {
)}
<div className="mx-auto max-w-[80ch] py-6 sm:px-6 lg:px-8">
<div className="prose">
<div className="prose prose-a:text-blue-600 hover:prose-a:text-blue-500 prose-p:my-2">
<MDXContent code={page.mdx} components={{}} />
</div>
</div>

View File

@ -44,3 +44,7 @@ body {
text-wrap: balance;
}
}
.prose p {
@apply my-2;
}