Browse Source

fix: element selector not showing on rtl page

Ahmad Kholid 3 years ago
parent
commit
089293c251
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/content/element-selector/index.js

+ 1 - 1
src/content/element-selector/index.js

@@ -64,7 +64,7 @@ function elementSelectorInstance() {
 
     const automaStyle = document.createElement('style');
     automaStyle.classList.add('automa-element-selector');
-    automaStyle.innerHTML = `.automa-element-selector { pointer-events: none } \n [automa-isDragging] { user-select: none }`;
+    automaStyle.innerHTML = `.automa-element-selector { pointer-events: none; direction: ltr } \n [automa-isDragging] { user-select: none }`;
 
     initElementSelector(rootElement);