Better response headers

This commit is contained in:
Gregory Schier
2023-04-02 10:45:41 -07:00
parent ceefbd1de1
commit 62a367cd0c
8 changed files with 59 additions and 34 deletions

View File

@@ -5,8 +5,10 @@ interface Props {
export function CountBadge({ count }: Props) {
if (count === 0) return null;
return (
<div aria-hidden className="opacity-80 text-2xs border rounded px-1 mb-0.5 ml-1 h-4">
{count}
</div>
<>
<div aria-hidden className="opacity-70 text-3xs rounded mb-0.5 ml-1 h-4 font-mono">
{count}
</div>
</>
);
}