Increase yOffset by 4px away

pull/21833/head
Michael Telatynski 2021-08-05 14:20:31 +01:00
parent 8ae95ddbb7
commit e1b62ae38b
1 changed files with 6 additions and 6 deletions

View File

@ -490,7 +490,7 @@ export default class CallView extends React.Component<IProps, IState> {
onClick={this.onVidMuteClick}
title={this.state.vidMuted ? _t("Start the camera") : _t("Stop the camera")}
alignment={Alignment.Top}
yOffset={-20}
yOffset={-24}
/>
);
}
@ -513,7 +513,7 @@ export default class CallView extends React.Component<IProps, IState> {
: _t("Start sharing your screen")
}
alignment={Alignment.Top}
yOffset={-20}
yOffset={-24}
/>
);
}
@ -549,7 +549,7 @@ export default class CallView extends React.Component<IProps, IState> {
isExpanded={this.state.showMoreMenu}
title={_t("More")}
alignment={Alignment.Top}
yOffset={-20}
yOffset={-24}
/>
);
}
@ -563,7 +563,7 @@ export default class CallView extends React.Component<IProps, IState> {
isExpanded={this.state.showDialpad}
title={_t("Dialpad")}
alignment={Alignment.Top}
yOffset={-20}
yOffset={-24}
/>
);
}
@ -610,7 +610,7 @@ export default class CallView extends React.Component<IProps, IState> {
onClick={this.onMicMuteClick}
title={this.state.micMuted ? _t("Unmute the microphone") : _t("Mute the microphone")}
alignment={Alignment.Top}
yOffset={-20}
yOffset={-24}
/>
{ vidMuteButton }
<div className={micCacheClasses} />
@ -623,7 +623,7 @@ export default class CallView extends React.Component<IProps, IState> {
onClick={this.onHangupClick}
title={_t("Hangup")}
alignment={Alignment.Top}
yOffset={-20}
yOffset={-24}
/>
</div>
);