@mixin grabCursor {
  // scss-lint:disable DuplicateProperty
  cursor: move;
  cursor: grab;

  &:active {
    cursor: grabbing;
  }
}

@mixin pointAndGrabCursor {
  // scss-lint:disable DuplicateProperty
  cursor: pointer;

  &:active {
    cursor: move;
    cursor: grabbing;
  }
}
