Эх сурвалжийг харах

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 жил өмнө
parent
commit
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 {