Skip to content

Commit

Permalink
fix: details link added
Browse files Browse the repository at this point in the history
  • Loading branch information
keriat committed Mar 1, 2023
1 parent b33500b commit 36d865b
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/components/VaultExplorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,19 @@ export default function VaultExplorer() {
</td>
<td className="p-4">{mapIcon(vault.chain)}</td>
<td className="p-4 font-semibold">{vault.protocol}</td>
<td className="font-base max-w-[30vw] cursor-default whitespace-normal p-4 text-xs uppercase italic tracking-tight md:max-w-[300px]">{vault.description}</td>
<td className="p-4">{vault.creator}</td>
<td className="font-base max-w-[30vw] cursor-default whitespace-normal p-4 text-xs uppercase italic tracking-tight md:max-w-[300px]">
{vault.description}<a
className="inline-flex px-1 font-medium text-pink-700 hover:transition-all md:hover:underline"
target="_blank"
href={vault.link}
rel="noreferrer nofollow"
>
learn more</a>

</td>
<td className="p-4">
{vault.creator}
</td>
<td className="p-4 text-right text-pink-900 md:text-sm md:text-gray-900">{mapAddressWithScan(vault.contract_address, vault.chain)}</td>
</tr>
))}
Expand Down

1 comment on commit 36d865b

@vercel
Copy link

@vercel vercel bot commented on 36d865b Mar 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.