/* v2.3 mobile touch scroll lock */

@media (hover: none) and (pointer: coarse) {
  .table-board {
    touch-action: none;
    overscroll-behavior: contain;
    -webkit-user-select: none;
    user-select: none;
  }

  .table-board button,
  .table-board .hand-card,
  .table-board .field-card,
  .table-board .hero-badge,
  .table-board .deck-stack {
    touch-action: none;
  }

  html.card-board-touching,
  html.card-board-touching body {
    overscroll-behavior: none;
  }
}
