web component rtl date-picker

This commit is contained in:
Subhonbek 2023-07-10 12:43:12 +03:00
parent 0f46bed787
commit 50097b252a

View File

@ -37,6 +37,12 @@ const DateSelector = styled.div`
.mr-8 {
margin-right: 8px;
${(props) =>
props.theme.interfaceDirection === "rtl" &&
css`
margin-right: 0px;
margin-left: 8px;
`}
}
`;