Skip to content
This repository has been archived by the owner on Mar 16, 2020. It is now read-only.

Commit

Permalink
Prevent horiz scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
maddyblue committed Oct 10, 2016
1 parent 2e0ba48 commit 5eddc72
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mobile/index.html
Expand Up @@ -6,6 +6,12 @@
<link rel="shortcut icon" href="./src/favicon.png">
<link rel="manifest" href="/manifest.json">
<title>go read</title>
<style>
/* Attempt to disable horizontal scroll on mobile. */
html, body {
overflow-x: hidden;
}
</style>
</head>
<body>
<div id="root"></div>
Expand Down

0 comments on commit 5eddc72

Please sign in to comment.