소스 검색

fix: element selector layout is broken in some websites (#682)

Ahmad Kholid 3 년 전
부모
커밋
9c933f032f
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/content/utils.js

+ 5 - 0
src/content/utils.js

@@ -5,6 +5,11 @@ export function elementSelectorInstance() {
 
   if (rootElementExist) {
     rootElementExist.style.display = 'block';
+    document.documentElement.style.setProperty(
+      'font-size',
+      '16px',
+      'important'
+    );
 
     return true;
   }