diff --git a/src/controllers/modals/components/legacy/UserProfile.module.scss b/src/controllers/modals/components/legacy/UserProfile.module.scss index 73b03595..32a53589 100644 --- a/src/controllers/modals/components/legacy/UserProfile.module.scss +++ b/src/controllers/modals/components/legacy/UserProfile.module.scss @@ -58,8 +58,10 @@ } .username { + display: block; font-size: 13px; font-weight: 600; + width: fit-content; color: var(--secondary-foreground); } diff --git a/src/controllers/modals/components/legacy/UserProfile.tsx b/src/controllers/modals/components/legacy/UserProfile.tsx index c1c9dddf..ea142a34 100644 --- a/src/controllers/modals/components/legacy/UserProfile.tsx +++ b/src/controllers/modals/components/legacy/UserProfile.tsx @@ -174,9 +174,20 @@ export const UserProfile = observer( - modalController.writeText(user.username) + modalController.writeText( + user.username + + "#" + + user.discriminator, + ) }> - {user.username}#{user.discriminator} + + + }> + {user.username}#{user.discriminator} + + {user.status?.text && (