Fix a few wrong tournament vars

This commit is contained in:
Kalle 2026-03-23 19:06:55 +02:00
parent e3aa6ced14
commit 11eeffd46e
3 changed files with 9 additions and 5 deletions

View File

@ -1075,7 +1075,7 @@ function MysteryRow({
<li className={styles.mapListRow}>
<div
className={clsx("stack horizontal items-center xs text-lighter", {
"text-info": isCounterpicks,
"text-accent-high": isCounterpicks,
})}
>
<span className="text-lg">{number}.</span>

View File

@ -396,11 +396,11 @@
}
.modeProgressImageTeamOneWin {
outline: 2px solid var(--color-info);
outline: 2px solid var(--color-accent);
}
.modeProgressImageTeamTwoWin {
outline: 2px solid var(--color-error);
outline: 2px solid var(--color-second);
}
.modeProgressImageSelected {
@ -422,14 +422,14 @@
.teamOneDot {
border-radius: 100%;
background-color: var(--color-info);
background-color: var(--color-accent);
width: 8px;
height: 8px;
}
.teamTwoDot {
border-radius: 100%;
background-color: var(--color-error);
background-color: var(--color-second);
width: 8px;
height: 8px;
}

View File

@ -59,6 +59,10 @@
color: var(--color-info);
}
.text-accent-high {
color: var(--color-accent-high);
}
.text-warning {
color: var(--color-warning);
}