From b93aeeed04d40d63ecfcaacec7d1bfda1157effb Mon Sep 17 00:00:00 2001 From: Radiquum Date: Sun, 24 Aug 2025 23:39:48 +0500 Subject: [PATCH] anix/style: change user card in search --- app/components/UserSection/UserSection.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/app/components/UserSection/UserSection.tsx b/app/components/UserSection/UserSection.tsx index 4dc7bfe..896ebd2 100644 --- a/app/components/UserSection/UserSection.tsx +++ b/app/components/UserSection/UserSection.tsx @@ -12,20 +12,19 @@ export const UserSection = (props: { sectionTitle?: string; content: any }) => { )}
-
+
{props.content.map((user) => { return ( - - - -
- {user.login} -
+ + +
+ +

{user.login}

+
); })} - {props.content.length == 1 &&
}