The text-size-adjust property is part of many css reset (including normalize, check out the first selector https://necolas.github.io/normalize.css/7.0.0/normalize.css). its goal is to prevent browsers from inflating or deflating text in weird ways when the site is viewed on mobile.
This is how it should behave: https://media.giphy.com/media/3oKIPz6jOMmO3tQkqk/giphy.gif
And this is how it behaves when used with next.js https://media.giphy.com/media/l4FGBK6OrUm10Xd5e/giphy.gif
May be that's because we are rendering the app inside a div.
Anyway, we don't ship any CSS with Next.js.
(sorry for the close, wrong button on mobile phone)
I know we don't ship any css with next, what bothers me is that this css rule works with the official cra and nwb, it's only in next that the problem exist.
I'm going to investigate this, the issue is to keep track of the bug publicly
@quentin-sommer weird, sounds like something no related to _Next.js_.
Could you deploy your example with now to explore the same project?
Do you have <meta name="viewport" content="width=device-width, initial-scale=1"> in the head?
^ you nailed it @stevebluck
Nice 馃槃
Most helpful comment
Do you have
<meta name="viewport" content="width=device-width, initial-scale=1">in the head?