Skip to content

Commit dbcb7c6

Browse files
committed
Fix horizontal scroll issue on mobile
Fixes purescript#154 Solution taken from <https://stackoverflow.com/a/36380425>
1 parent 010c2c2 commit dbcb7c6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: index.html

+5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@
1616
<meta name="viewport" content="width=device-width, initial-scale=1">
1717

1818
<style>
19+
html, body {
20+
overflow-x: hidden;
21+
}
22+
1923
body {
24+
position: relative;
2025
background-color: white;
2126
font-family: 'Roboto';
2227
color: rgb(77, 77, 77);

0 commit comments

Comments
 (0)