Merge pull request #5683 from musickiper/vertically-align-rec-tag-with-sTitle

Vertically align recording tag with the session title
This commit is contained in:
Anton Georgiev 2018-06-19 10:04:00 -04:00 committed by GitHub
commit 75ddc19013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}