Fix Bug 65062 - Settings: Developer Tools. The text of the "Code to insert" button is cut off in RTL mode

This commit is contained in:
Elyor Djalilov 2023-11-13 21:01:20 +05:00
parent f06aaa2a72
commit 27519e57f7

View File

@ -26,9 +26,9 @@ const Label = styled.div`
.title_style {
text-align: center;
margin: ${(props) => props.theme.tabsContainer.label.title.margin};
overflow: ${(props) => props.theme.tabsContainer.label.title.overflow};
${NoUserSelect}
overflow: ${(props) =>
props.theme.interfaceDirection === "rtl" ? "visible" : "hidden"};
${NoUserSelect};
}
${(props) =>