pagination.scss 661 Bytes
@import '@/styles/_support';

.comp {
  // display: flex;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;

  span {
    margin: 0 0.7rem;
    text-align: center;
  }

  .page-num {
    width: 1.75rem;
    height: 1.75rem;
    border: solid 1px #dcdddd;
    text-align: center;
    cursor: pointer;
  }

  .page-num:hover {
    color: #ffffff;
    background-color: #006441;
  }

}

.disabled {
  color: #888888;
}

.active {
  color: #ffffff;
  background-color: #006441;
}


.ipt {
  @extend .bb;
  width: 3.5rem;
  border: solid 1px #dcdddd;
  padding: 0 .7rem;
}

.jump {
  color: #006441;
  text-decoration: underline;
}