Add active states to links

This commit is contained in:
Sam Becker 2025-04-13 15:54:44 -05:00
parent 20eaf39e4d
commit c8f5512f68
2 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export default function PhotoFocalLength({
{...props}
label={formatFocalLength(focal)}
href={pathForFocalLength(focal)}
icon={<IconFocalLength />}
icon={<IconFocalLength className="translate-y-[-1px]" />}
hoverEntity={countOnHover}
/>
);

View File

@ -329,6 +329,7 @@
a, .link {
@apply
hover:text-medium
active:text-dim
}
}