From 2ac3f99b692629c1668da153be09b1aa3f7942b3 Mon Sep 17 00:00:00 2001 From: Jonathan <jonathan@xgecko.com> Date: Wed, 22 Mar 2017 10:49:25 -0700 Subject: [PATCH] Fix responsive behavior in iOS 9+ (#1821) * Adding shrink-to-fit=no for proper responsive handling on Safari 9+ --- packages/react-scripts/template/public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-scripts/template/public/index.html b/packages/react-scripts/template/public/index.html index aab5e3b00..3622e29b4 100644 --- a/packages/react-scripts/template/public/index.html +++ b/packages/react-scripts/template/public/index.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> <!-- Notice the use of %PUBLIC_URL% in the tag above. -- GitLab