Skip to content

Commit f163f46

Browse files
committed
fix padding issues
1 parent 88abb71 commit f163f46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/home/FriendRequestItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export function FriendRequestItem({ relation }: { relation: DetailedProfileRelat
2020
<div className='flex flex-row space-x-2'>
2121
{relation.initiator_profile_id !== user?.id && (
2222
<button
23-
className="rounded-md p-3 border-2 border-gray-500 hover:bg-gray-500"
23+
className="rounded-md p-2 border-2 border-gray-500 hover:bg-gray-500"
2424
onClick={async () => {
2525
const { error } = await acceptFriendRequest(supabase, relation.id);
2626
if (error) {

0 commit comments

Comments
 (0)