Client: InvitePanel: Fix invite input in rtl

This commit is contained in:
Aleksandr Lushkin 2024-07-17 13:57:45 +02:00
parent 55657c9c70
commit 3d9547c327

View File

@ -263,7 +263,7 @@ const StyledInviteInput = styled.div`
.append {
display: ${(props) => (props.isShowCross ? "flex" : "none")};
align-items: center;
padding-right: 8px;
padding-inline-end: 8px;
cursor: default;
}
@ -372,7 +372,7 @@ const StyledDropDown = styled(DropDown)`
.email-list_add-button {
display: flex;
margin-left: auto;
margin-inline-start: auto;
align-items: center;
gap: 4px;
@ -380,11 +380,16 @@ const StyledDropDown = styled(DropDown)`
color: #4781d1;
}
svg path {
svg {
${({ theme }) =>
theme.interfaceDirection === "rtl" && "transform: scaleX(-1);"};
path {
fill: #4781d1;
}
}
}
}
`;
const SearchItemText = styled(Text)`