Add small border to code node

This commit is contained in:
Nate Kelley 2025-09-22 13:43:51 -06:00
parent dcfa88b821
commit 85c1b18340
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ export function CodeLeaf(props: PlateLeafProps) {
<PlateLeaf
{...props}
as="code"
className="bg-muted rounded px-[0.3em] py-[0.2em] font-mono text-sm whitespace-pre-wrap"
className="bg-muted rounded px-[2px] py-[0.5px] font-mono text-sm whitespace-pre-wrap border"
>
{props.children}
</PlateLeaf>