@import '~styles/config';

.table {
  overflow-y: auto;
  overflow-x: scroll;

  &__table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
  }

  &::-webkit-scrollbar {
    height: 8px;
  }

  &::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;

  &::-webkit-scrollbar-thumb:hover {
    background: #666;
  }

  &::-webkit-scrollbar-track {
    background: #f3f3f3;
  }
}

}
