Skip to content

Commit

Permalink
Add shrink-to-fit=no to <meta viewport> (#448)
Browse files Browse the repository at this point in the history
Bootstrap and HTML5 boilerplate projects did it:
twbs/bootstrap#17793
h5bp/html5-boilerplate#1984
  • Loading branch information
devmrwor committed Mar 9, 2018
1 parent 41fda31 commit bd1140d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/static/RootComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class DefaultDocument extends Component {
<Html lang="en-US">
<Head>
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" />
</Head>
<Body>{children}</Body>
</Html>
Expand Down

0 comments on commit bd1140d

Please sign in to comment.