Change tabs again

This commit is contained in:
Gregory Schier
2023-04-02 11:11:53 -07:00
parent 80bfbd503a
commit b04602bcb9
4 changed files with 10 additions and 5 deletions

View File

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