Adjust vertical align of recording tag to match with the session title

This commit is contained in:
James Jung 2018-06-13 13:01:19 -04:00
parent 5a6f5b6f7a
commit f9232bcf64
2 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const RecordingIndicator = ({
if (!record) return null;
return (
<div>
<div className={styles.recordState}>
<div className={recording ? styles.recordIndicator : styles.notRecording} />
<span className={recording ? styles.recordingLabel : styles.notRecordingLabel}>{title}</span>
</div>

View File

@ -55,3 +55,7 @@
@extend %baseIndicatorLabel;
color: $color-gray;
}
.recordState {
display: flex;
}