Przeglądaj źródła

fix: element selector not showing on rtl page

Ahmad Kholid 3 lat temu
rodzic
commit
089293c251
1 zmienionych plików z 1 dodań i 1 usunięć
  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);