Skip to content

Commit 29835ef

Browse files
committed
updated MatchStatus colors and transitions
1 parent 99ffe57 commit 29835ef

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/components/MatchStatus.vue

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,13 @@
126126
127127
.time-positive {
128128
border-color: green;
129+
background-color: rgba(0, 255, 0, 0.1);
130+
129131
}
130132
131133
.time-negative {
132134
border-color: red;
135+
background-color: rgba(255, 0, 0, 0.1);
133136
}
134137
135138
.separator {
@@ -152,18 +155,19 @@
152155
}
153156
154157
.highlight-command {
155-
transition: background-color 1000ms ease;
156-
border-radius: 1em;
158+
transition: background-color 500ms ease;
159+
border-radius: .5em;
157160
padding: 0.1em;
161+
padding-top: 0.2em;
158162
margin-top: 0.1em;
159163
}
160164
161165
.highlight-command.stop-command {
162-
background-color: #E23D28;
166+
background-color: #FF7000
163167
}
164168
165169
.highlight-command.halt-command {
166-
background-color: #A50021;
170+
background-color: #EE0022;
167171
}
168172
169173
</style>

0 commit comments

Comments
 (0)