Fix tournament card org long name styling
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run

This commit is contained in:
Kalle 2025-10-31 21:29:41 +02:00
parent f9192ff3d6
commit 8d2811d49b
2 changed files with 10 additions and 1 deletions

View File

@ -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);

View File

@ -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