diff --git a/src/components/MatchStatus.vue b/src/components/MatchStatus.vue index 205aa09..b1c3ac0 100644 --- a/src/components/MatchStatus.vue +++ b/src/components/MatchStatus.vue @@ -126,10 +126,13 @@ .time-positive { border-color: green; + background-color: rgba(0, 255, 0, 0.1); + } .time-negative { border-color: red; + background-color: rgba(255, 0, 0, 0.1); } .separator { @@ -152,18 +155,19 @@ } .highlight-command { - transition: background-color 1000ms ease; - border-radius: 1em; + transition: background-color 500ms ease; + border-radius: .5em; padding: 0.1em; + padding-top: 0.2em; margin-top: 0.1em; } .highlight-command.stop-command { - background-color: #E23D28; + background-color: #FF7000 } .highlight-command.halt-command { - background-color: #A50021; + background-color: #EE0022; } diff --git a/src/components/TeamStatus.vue b/src/components/TeamStatus.vue index 1588844..c49d750 100644 --- a/src/components/TeamStatus.vue +++ b/src/components/TeamStatus.vue @@ -8,11 +8,11 @@