刘嘉威
2023-07-10 58f406ecca89ca7027392d97e28a906c476515f3
src/assets/css/main.scss
@@ -51,4 +51,48 @@
    .el-message__content {
      color: var(--yh-text-color-primary);
    }
  }
  .beautify-scroll-def {
    overflow-y: auto;
    &::-webkit-scrollbar-thumb {
      //滚动条的设置
      background-color: rgba(14, 59, 150, 0);
      background-clip: padding-box;
      border-radius: 4px;
    }
    &:hover {
      &::-webkit-scrollbar-thumb {
        //滚动条的设置
        background-color: rgba(14, 59, 150, 0.5);
        background-clip: padding-box;
        border-radius: 4px;
      }
    }
    &::-webkit-scrollbar-track-piece {
      //滚动条凹槽的颜色,还可以设置边框属性
      background-color: transparent;
    }
    &::-webkit-scrollbar {
      //滚动条的宽度
      width: 8px;
      height: 8px;
    }
    &::-webkit-scrollbar-thumb:hover {
      background-color: rgba(14, 59, 150, .8);
    }
  }
  .text-content {
    width: 100%;
    display: flex;
    min-height: calc(100% - 60px);
    justify-content: space-between;
  }