Tweak font sizes

This commit is contained in:
Gregory Schier
2025-12-22 14:40:18 -08:00
parent 5f8902e57b
commit 9c5479b206
3 changed files with 16 additions and 16 deletions

View File

@@ -10,7 +10,7 @@ interface Props {
export function KeyValueRows({ children }: Props) {
children = Array.isArray(children) ? children : [children];
return (
<table className="text-xs font-mono min-w-0 w-full mb-auto">
<table className="text-editor font-mono min-w-0 w-full mb-auto">
<tbody className="divide-y divide-surface-highlight">
{children.map((child, i) => (
// biome-ignore lint/suspicious/noArrayIndexKey: none