Skip to content
Snippets Groups Projects
Commit 67342969 authored by Ramon Souza's avatar Ramon Souza
Browse files

add margin between record button and time

parent 630daca3
No related branches found
No related tags found
No related merge requests found
...@@ -138,7 +138,7 @@ class RecordingIndicator extends PureComponent { ...@@ -138,7 +138,7 @@ class RecordingIndicator extends PureComponent {
}; };
const recordingIndicatorIcon = ( const recordingIndicatorIcon = (
<span data-test="mainWhiteboard" className={styles.recordingIndicatorIcon}> <span data-test="mainWhiteboard" className={cx(styles.recordingIndicatorIcon, (!isPhone || recording) && styles.presentationTitleMargin)}>
<svg xmlns="http://www.w3.org/2000/svg" height="100%" version="1" viewBox="0 0 20 20"> <svg xmlns="http://www.w3.org/2000/svg" height="100%" version="1" viewBox="0 0 20 20">
<g stroke="#FFF" fill="#FFF" strokeLinecap="square"> <g stroke="#FFF" fill="#FFF" strokeLinecap="square">
<circle <circle
...@@ -174,7 +174,7 @@ class RecordingIndicator extends PureComponent { ...@@ -174,7 +174,7 @@ class RecordingIndicator extends PureComponent {
> >
{recordingIndicatorIcon} {recordingIndicatorIcon}
<div className={cx(styles.presentationTitle, (!isPhone || recording) && styles.presentationTitleMargin)}> <div className={styles.presentationTitle}>
{recording {recording
? ( ? (
<span className={styles.visuallyHidden}> <span className={styles.visuallyHidden}>
......
...@@ -86,7 +86,9 @@ ...@@ -86,7 +86,9 @@
} }
.presentationTitleMargin { .presentationTitleMargin {
margin-left: var(--sm-padding-x); [dir="ltr"] & {
margin-right: var(--sm-padding-x);
}
} }
.recordingStatusViewOnly { .recordingStatusViewOnly {
......
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