scrollbar.scss

/* scrollbar.scss */
/* stylelint-disable */

@import './color.scss';

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

/* 滚动条样式 */
::-webkit-scrollbar-thumb {
  border-radius: 0.4rem;
  transition: all 0.3s ease-in-out;
  background-color: rgb(192, 192, 192);
}

/* 滚动条里面轨道 */
::-webkit-scrollbar-track {
  border-radius: 0;
  border-left: 1px solid rgb(229, 229, 229);
  box-shadow: inset 0 0 0.4rem $white;
  transition: all 0.3s ease-in-out;
  background-color: rgb(249, 249, 249);
}
posted @ 2023-01-19 17:33  王双-50  阅读(22)  评论(0)    收藏  举报