/* Prevent pull-to-refresh on iOS */
html, body {
  overscroll-behavior-y: contain;
  overscroll-behavior-x: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
#root {
  width: 100%;
  height: 100%;
}
/* Prevent iOS bounce/rubber-band scrolling at document level */
html {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#root {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
