Skip to content

Commit

Permalink
style(boards): underline on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
emilielr committed Jun 11, 2024
1 parent 73c86a3 commit cbb0e19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion next-tavla/app/(admin)/boards/components/Column/Name.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Link from 'next/link'
function Name({ board }: { board: TBoard }) {
return (
<Column column="name">
<Link href={`/edit/${board.id}`}>
<Link href={`/edit/${board.id}`} className="hover:underline">
{board.meta?.title ?? DEFAULT_BOARD_NAME}
</Link>
</Column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ function Organization({ organization }: { organization: TOrganization }) {
return (
<Column column="organization">
{organization.id ? (
<Link href={`/organizations/${organization.id}`}>
<Link
href={`/organizations/${organization.id}`}
className="hover:underline"
>
{orgName}
</Link>
) : (
Expand Down

0 comments on commit cbb0e19

Please sign in to comment.