//Position List
//provide a list that enables user to drag and drop
.position-list {
  list-style: none;

  .place-holder {
    padding: 1em;
    background-color: #e7e7e7;
  }

  li:hover {
    cursor: pointer;
    cursor: hand;
    background: #e7e7e7;
  }
}

.position-list:hover {
  cursor: grab;
}
