소스 검색

fix: prevent focus zoom on mobile devices (#20)

Set font-size to 16px for input, select, and
textarea elements on mobile screens to prevent
zooming when focused.
Sat Naing 1 년 전
부모
커밋
a91e0aa3cb
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      src/index.css

+ 9 - 0
src/index.css

@@ -107,6 +107,15 @@
   body > #root {
     @apply h-svh;
   }
+
+  /* Prevent focus zoom on mobile devices */
+  @media screen and (max-width: 767px) {
+    input,
+    select,
+    textarea {
+      font-size: 16px !important;
+    }
+  }
 }
 
 @layer utilities {