We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a7da0f commit d80d2e7Copy full SHA for d80d2e7
libs/table/cells/LinkCell.tsx
@@ -13,8 +13,13 @@ export const linkCell =
13
(makeHref: (value: string) => string) =>
14
({ value }: Cell<string>) => {
15
return (
16
- <Link className="text-sans-semi-md text-default hover:underline" to={makeHref(value)}>
+ <Link
17
+ className="flex h-full w-full items-center text-sans-semi-md text-default hover:underline"
18
+ to={makeHref(value)}
19
+ >
20
{value}
21
+ {/* Pushes out the link area to the entire cell for improved clickability™ */}
22
+ <div className="absolute inset-0" />
23
</Link>
24
)
25
}
0 commit comments