mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
Fix tournament card org long name styling
This commit is contained in:
parent
f9192ff3d6
commit
8d2811d49b
|
|
@ -45,6 +45,13 @@
|
|||
color: var(--text-lighter);
|
||||
}
|
||||
|
||||
.org span {
|
||||
max-width: 165px;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.time {
|
||||
font-size: var(--fonts-xs);
|
||||
font-weight: var(--semi-bold);
|
||||
|
|
|
|||
|
|
@ -70,7 +70,9 @@ export function TournamentCard({
|
|||
</div>
|
||||
) : null}
|
||||
{tournament.organization ? (
|
||||
<div className={styles.org}>{tournament.organization.name}</div>
|
||||
<div className={styles.org}>
|
||||
<span>{tournament.organization.name}</span>
|
||||
</div>
|
||||
) : null}
|
||||
</div>
|
||||
<div
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user