fixed player team color not being shown
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good

This commit is contained in:
2021-11-09 14:08:12 +01:00
parent e1d92f8713
commit 46235a0a22
2 changed files with 7 additions and 5 deletions

View File

@@ -201,10 +201,15 @@ export default {
.team-color-orange,
.team-color-green,
.team-color-purple,
.team-color-yellow {
.team-color-yellow,
.team-color-grey {
outline: 3px solid;
}
.team-color-grey {
outline-color: var(--csgo-grey);
}
.team-color-orange {
outline-color: var(--csgo-orange);
}
@@ -225,10 +230,6 @@ export default {
outline-color: var(--csgo-green);
}
.team-color-grey {
outline: none;
}
.player__vac,
.vac-placeholder {
width: 20px;

View File

@@ -64,4 +64,5 @@ $success: #609926;
--csgo-yellow: #F7F52F;
--csgo-purple: #A01BEF;
--csgo-green: #04B462;
--csgo-grey: #5a5a5a;
}