mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
Prevent friend request username from overflowing
This commit is contained in:
parent
eecab39cd3
commit
7cb7710cc3
|
|
@ -13,6 +13,12 @@
|
|||
font-weight: var(--weight-semi);
|
||||
}
|
||||
|
||||
.userName {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.friendsListHeader {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ function IncomingRequestsSection() {
|
|||
}}
|
||||
size="xs"
|
||||
/>
|
||||
<span>{request.sender.username}</span>
|
||||
<span className={styles.userName}>{request.sender.username}</span>
|
||||
</div>
|
||||
<div className="stack horizontal sm">
|
||||
<Form method="post">
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user