Skip to content
Snippets Groups Projects
Commit b693bbf2 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #3532 from Lajellu/recordingIconLogic

HTML5 - Fix Recording Indicator Logic
parents 20eea9cb 11e58093
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,7 @@ export default class RecordingIndicator extends Component {
render() {
const { beingRecorded } = this.props;
let classNames = {};
classNames[styles.indicator] = true;
classNames[styles.beingRecorded] = beingRecorded;
classNames[styles.indicator] = beingRecorded;
return (
<span className={cx(classNames)}></span>
......
......@@ -18,12 +18,6 @@
margin-top: -($font-size-base / 4);
margin-left: -($font-size-base / 4);
border-radius: 50%;
background-color: $color-white;
}
}
.beingRecorded {
&:after {
background-color: $color-danger !important;
background-color: $color-danger;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment