From 01eb84e3a64f3d3de96b069fd20fb89bd02ab1b5 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 7 Jun 2022 10:37:33 -0400 Subject: [PATCH] fix indeterminate state in RTL --- src/components/progress-bar/progress-bar.styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/progress-bar/progress-bar.styles.ts b/src/components/progress-bar/progress-bar.styles.ts index f0957d1fbd..7c4501c148 100644 --- a/src/components/progress-bar/progress-bar.styles.ts +++ b/src/components/progress-bar/progress-bar.styles.ts @@ -45,12 +45,12 @@ export default css` @keyframes indeterminate { 0% { - left: -50%; + inset-inline-start: -50%; width: 50%; } 75%, 100% { - left: 100%; + inset-inline-start: 100%; width: 50%; } }