Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
scandipwa#4786 - corrected issue with dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Marita Kochua committed Jun 24, 2022
1 parent addb6d0 commit 9ff98e5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/scandipwa/src/route/CartPage/CartPage.style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,15 @@
position: fixed;
inset-block-start: auto;
inset-block-end: 50%;
transform: translate(50%, 50%);
// transform: translate(-50%, 50%);

&:dir(rtl) {
transform: translate(50%, 50%);
}

&:dir(ltr) {
transform: translate(-50%, 50%);
}
}
}
}
Expand Down

0 comments on commit 9ff98e5

Please sign in to comment.