Web: Components: Fix RTL padding

This commit is contained in:
Aleksandr Lushkin 2023-08-15 17:33:08 +02:00
parent c435658bcf
commit c0d8f711f8

View File

@ -115,7 +115,10 @@ const StyledDropDown = styled(DropDown)`
${isMobileOnly && mobileDropDown}
.section-scroll, .scroll-body {
padding-right: 0px !important;
${({ theme }) =>
theme.interfaceDirection === "rtl"
? `padding-left: 0px !important;`
: `padding-right: 0px !important;`}
}
.separator-wrapper {