fix video dropdown in rtl
This commit is contained in:
parent
27efad9fc2
commit
fde37f08c9
@ -180,6 +180,7 @@ const UserActions = (props) => {
|
||||
<Styled.DropdownTrigger
|
||||
tabIndex={0}
|
||||
data-test="dropdownWebcamButton"
|
||||
isRTL={isRTL}
|
||||
>
|
||||
{name}
|
||||
</Styled.DropdownTrigger>
|
||||
|
@ -23,6 +23,9 @@ const DropdownTrigger = styled(DivElipsis)`
|
||||
content: "\\203a";
|
||||
position: absolute;
|
||||
transform: rotate(90deg);
|
||||
${({ isRTL }) => isRTL && `
|
||||
transform: rotate(-90deg);
|
||||
`}
|
||||
top: 45%;
|
||||
width: 0;
|
||||
line-height: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user