Skip to content

Commit

Permalink
Merge pull request #18851 from ramonlsouza/issue-18816
Browse files Browse the repository at this point in the history
fix: RTL on mobile - webcam not centered
  • Loading branch information
ramonlsouza committed Sep 26, 2023
2 parents 2f5137a + 410ca25 commit 32d6532
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -197,7 +197,7 @@ const SmartLayout = (props) => {

cameraDockBounds.top = navBarHeight;
cameraDockBounds.left = mediaAreaBounds.left;
cameraDockBounds.right = isRTL ? sidebarSize + camerasMargin * 2 : null;
cameraDockBounds.right = isRTL ? sidebarSize : null;
cameraDockBounds.zIndex = 1;

if (mediaBounds.width < mediaAreaBounds.width) {
Expand Down

0 comments on commit 32d6532

Please sign in to comment.