[fix] fix friend link style

This commit is contained in:
PrinOrange
2024-08-16 17:58:00 +08:00
parent bc4861f664
commit 76c0e27269

View File

@@ -18,7 +18,7 @@ export default function FriendsPage() {
<Separator />
<div className={"my-5 flex flex-wrap justify-center text-2xl content-font"}>
{FriendsList.map((item) => (
<Link className="mx-2 p-2 underline" href={item.url} key={nanoid()}>
<Link className="mx-2 p-2 underline underline-offset-4" href={item.url} key={nanoid()}>
{item.title}
</Link>
))}