/**
 * Stop rubber-band / edge stretch when dragging past the top or bottom of a page.
 * Works best with overscroll-behavior on roots + scroll containers; iOS fallback in prevent-page-zoom.js.
 */
html,
body {
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

html {
  height: 100%;
}

body.app-body {
  height: 100%;
  overflow: hidden;
}

.app-main--page,
.app-main--lobby-list,
.shop-content,
.modal,
.watch-end-list,
.observer-list-body,
.ActionBox,
.ban-list-content,
.clan-preset-list,
.clan-preset-pick-list,
.end-reveal-list,
.clan-preset-list {
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

#deck {
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}
