gaosp
2024-03-12 e1cc0c1aabcd308e7918d14d14873bfa4a235eea
src/styles/index.scss
@@ -6,7 +6,7 @@
// @import './style.scss';
@font-face {
  font-family: digital;
  src: url('../assets/DS-Digital.ttf');
  src: url('~@/assets/DS-Digital.ttf');
}
body {
  height: 100%;
@@ -92,12 +92,13 @@
    line-height: 32px;
    color: #FFF;
  }
  .el-input__icon {
    line-height: 32px;
  }
  .el-textarea__inner {
    color: #FFF;
  }
  .el-input__icon {
    // line-height: 32px;
  }
  .el-form-item__content {
    line-height: 40px;
  }
@@ -145,7 +146,7 @@
  .table-del {
    margin-inline: 4px;
    color: #FF4342;
    background: url('../assets/img/table-del.png');
    background: url('~@/assets/img/table-del.png');
    background-size: contain;
  }
  .el-dialog {
@@ -182,6 +183,10 @@
    color: #FFF;
    background: linear-gradient(180deg, #00FFFF 0%, #008CFF 100%);
  }
  .el-pager li {
    color: #FFF;
    background: rgba(255,255,255,0.2);
  }
}
.nav-top {
  position: relative;
@@ -199,3 +204,22 @@
  transform: translateY(-50%);
  background: #4DC3FF;
}
::-webkit-scrollbar {
  width: 10px; /*对垂直流动条有效*/
  height: 10px; /*对水平流动条有效*/
  }
  /*定义滚动条的轨道颜色、内阴影及圆角*/
  ::-webkit-scrollbar-track{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #413f4f;
  border-radius: 3px;
  }
  /*定义滑块颜色、内阴影及圆角*/
  ::-webkit-scrollbar-thumb{
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 6px rgba(21,20,20,.3);
  background-color: #f9f9f9;
  }