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);
|
font-weight: var(--weight-semi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.userName {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
.friendsListHeader {
|
.friendsListHeader {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ function IncomingRequestsSection() {
|
||||||
}}
|
}}
|
||||||
size="xs"
|
size="xs"
|
||||||
/>
|
/>
|
||||||
<span>{request.sender.username}</span>
|
<span className={styles.userName}>{request.sender.username}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="stack horizontal sm">
|
<div className="stack horizontal sm">
|
||||||
<Form method="post">
|
<Form method="post">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user