From 46235a0a2245294410f29705b1d29944fb23be31 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Tue, 9 Nov 2021 14:08:12 +0100 Subject: [PATCH] fixed player team color not being shown --- src/components/ScoreTeamPlayer.vue | 11 ++++++----- src/scss/custom.scss | 1 + 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/ScoreTeamPlayer.vue b/src/components/ScoreTeamPlayer.vue index 32347eb..f62946e 100644 --- a/src/components/ScoreTeamPlayer.vue +++ b/src/components/ScoreTeamPlayer.vue @@ -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; diff --git a/src/scss/custom.scss b/src/scss/custom.scss index e35107d..d37e4ea 100644 --- a/src/scss/custom.scss +++ b/src/scss/custom.scss @@ -64,4 +64,5 @@ $success: #609926; --csgo-yellow: #F7F52F; --csgo-purple: #A01BEF; --csgo-green: #04B462; + --csgo-grey: #5a5a5a; }