mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-27 08:00:51 +01:00
fix profile layout
This commit is contained in:
parent
30eaa6141f
commit
c4e84cd921
@ -105,7 +105,7 @@ export const GroupInformationView: FC<GroupInformationViewProps> = props =>
|
|||||||
<div>
|
<div>
|
||||||
<div className="text-center d-flex flex-column h-100 small text-black text-decoration-underline">
|
<div className="text-center d-flex flex-column h-100 small text-black text-decoration-underline">
|
||||||
<div className="group-badge">
|
<div className="group-badge">
|
||||||
<BadgeImageView badgeCode={ groupInformation.badge } isGroup={ true } />
|
<BadgeImageView badgeCode={ groupInformation.badge } isGroup={ true } className="mx-auto"/>
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-3 cursor-pointer" onClick={ () => handleAction('members') }>
|
<div className="mt-3 cursor-pointer" onClick={ () => handleAction('members') }>
|
||||||
{ LocalizeText('group.membercount', ['totalMembers'], [groupInformation.membersCount.toString()]) }
|
{ LocalizeText('group.membercount', ['totalMembers'], [groupInformation.membersCount.toString()]) }
|
||||||
|
@ -21,23 +21,4 @@ export const BadgesContainerView: FC<BadgesContainerViewProps> = props =>
|
|||||||
</NitroCardGridView>
|
</NitroCardGridView>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
||||||
// return (
|
|
||||||
// <div className="row badge-container d-flex mt-1">
|
|
||||||
// <div className="nitro-card-grid theme-default">
|
|
||||||
// <div className="row row-cols-5 align-content-start">
|
|
||||||
// {
|
|
||||||
// badges.map( (badge, index) =>
|
|
||||||
// {
|
|
||||||
// return (
|
|
||||||
// <div className="grid-item-container" key={index}>
|
|
||||||
// <BadgeImageView badgeCode={badge}/>
|
|
||||||
// </div>
|
|
||||||
// )
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
// </div>
|
|
||||||
// </div>
|
|
||||||
// </div>
|
|
||||||
// );
|
|
||||||
}
|
}
|
||||||
|
@ -27,10 +27,10 @@ export const UserContainerView: FC<UserContainerViewProps> = props =>
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-sm-3 px-0 d-flex align-items-center">
|
<div className="col-auto px-0 d-flex align-items-center">
|
||||||
<AvatarImageView figure={userProfile.figure} direction={2} />
|
<AvatarImageView figure={userProfile.figure} direction={2} />
|
||||||
</div>
|
</div>
|
||||||
<div className="col-sm-8">
|
<div className="col">
|
||||||
<div className="user-info-container">
|
<div className="user-info-container">
|
||||||
<div className="fw-bold">{userProfile.username}</div>
|
<div className="fw-bold">{userProfile.username}</div>
|
||||||
<div className="fst-italic text-break small">{userProfile.motto}</div>
|
<div className="fst-italic text-break small">{userProfile.motto}</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user