mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-24 12:11:56 -05:00
Fix team roster input overflow
This commit is contained in:
parent
0e671fb41b
commit
c5b2a546e7
|
|
@ -205,9 +205,11 @@ function TeamRosterInputsCheckboxes({
|
|||
className="tournament-bracket__during-match-actions__player-name"
|
||||
htmlFor={`${member.id}-${id}`}
|
||||
>
|
||||
{member.inGameName
|
||||
? inGameNameWithoutDiscriminator(member.inGameName)
|
||||
: member.discordName}
|
||||
<span className="tournament-bracket__during-match-actions__player-name__inner">
|
||||
{member.inGameName
|
||||
? inGameNameWithoutDiscriminator(member.inGameName)
|
||||
: member.discordName}
|
||||
</span>
|
||||
</label>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -219,6 +219,13 @@
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tournament-bracket__during-match-actions__player-name__inner {
|
||||
white-space: nowrap;
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
padding-inline: var(--s-2);
|
||||
}
|
||||
|
||||
.tournament-bracket__during-match-actions__seed {
|
||||
font-size: var(--fonts-xxs);
|
||||
color: var(--theme);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user