/* stylelint-disable */
@import "./color/index.scss";

/* 滚动条整体样式 */
::-webkit-scrollbar {
  width: 8px; /* 高宽分别对应横竖滚动条的尺寸 */
  height: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* 滚动条样式 */
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: $grey500;
  -webkit-box-shadow: inset 0 0 5px $grey500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* 滚动条里面轨道 */
::-webkit-scrollbar-track {
  border-radius: 0;
  border-left: 1px solid $grey400;
  background-color: $grey300;
  -webkit-box-shadow: inset 0 0 5px $grey400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
