Skip to content

Commit e9360e9

Browse files
authored
In recent profile section content is going ouside of box that is fixed (#60)
1 parent d7ccb77 commit e9360e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/(home)/page.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ export default async function Home() {
5959
alt={profile.username}
6060
className="size-10 grow-0 rounded-full md:size-12"
6161
/>
62-
<div>
62+
<div style={{overflowWrap:'anywhere'}}>
6363
<p className="text-base font-semibold md:text-lg">
6464
{profile.name ?? profile.username}
6565
</p>
66-
<p className="-mt-1 text-sm text-gray-400 md:text-base">@{profile.username}</p>
66+
<p className="-mt-1 text-sm text-gray-400 md:text-base">@{profile.username}</p>
6767
</div>
6868
</Link>
6969
))}

0 commit comments

Comments
 (0)