Web: Components: Adapt TopLoadingIndicator component to RTL interface

This commit is contained in:
Aleksandr Lushkin 2023-06-26 16:37:45 +02:00
parent 7bb78c4d2c
commit 96e1318311

View File

@ -6,7 +6,9 @@ const StyledWrapper = styled.div`
position: fixed;
z-index: 390;
top: 0;
left: -6px;
${({ theme }) =>
theme.interfaceDirection === "rtl" ? `right: -6px;` : `left: -6px;`}
width: 0%;
height: 3px;
-moz-border-radius: 1px;