mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-22 11:05:09 -05:00
Fix tournament card org long name styling
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user