Make Mic Live timer only red when live.

This commit is contained in:
Matthew Stratford 2020-09-20 19:05:07 +01:00
parent b59887038d
commit 87c248ce6f

View file

@ -140,7 +140,7 @@ $number-of-channels: 3;
#micLiveTimer {
background: black;
border: 3px solid red;
border: 3px solid white;
color: white;
font-weight: bold;
padding: 2px;
@ -154,13 +154,17 @@ $number-of-channels: 3;
margin: 0;
float: left;
padding: 0 10px;
border-right: 3px solid red;
border-right: 3px solid white;
}
&.live .text {
&.live {
border: 3px solid red;
.text {
border-right: 3px solid red;
background: red;
color: white;
}
}
}
#micMeter {