I'm looking to enlarge the font size specifically for iPhone and iPad Safari browsers without affecting the desktop browser size. I attempted a solution using SASS:
body
font-size: 1em;
-webkit-text-size-adjust: 110%;
While this successfully increased the font size on the iPad, it unexpectedly decreased the font size on the iPhone. This doesn't seem correct, so I must be missing something. Could someone clarify the proper method for achieving this?