Blame view

src/assets/style/common.scss 1.04 KB
9b7e125f   monkeyhouyi   属地页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  html,
  body,
  #app {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  
  ::-webkit-scrollbar-track-piece {
    -webkit-border-radius: 0
  }
  ::-webkit-scrollbar {
    width: 5px;
    height: 10px
  }
  ::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #b8b8b8;
    -webkit-border-radius: 6px;
    outline-offset: -2px;
    filter: alpha(opacity = 50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5
  }
  ::-webkit-scrollbar-thumb:hover {
    height: 50px;
    background-color: #878987;
    -webkit-border-radius: 6px
  }
  
7af40104   monkeyhouyi   应用信息页面完成(上报没写)
33
34
35
  .common-info-box {
    height: calc(100vh - 200px);
  }
9b7e125f   monkeyhouyi   属地页面
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  .item-box {
    width: 100%;
    border-radius: 10px;
    background-color: rgba(244, 244, 245, 0.38);
    margin-bottom: 15px;
    .item-title {
      color: rgba(255, 255, 255, 1);
      font-size: 16px;
      line-height: 23px;
      padding: 10px;
    }
    .item-body {
      height: calc(100% - 68px);
      margin: 0 13px;
ecc43230   monkeyhouyi   优化首页,应用管理
50
      // padding-bottom: 28px;
9b7e125f   monkeyhouyi   属地页面
51
52
53
54
55
56
57
58
59
60
61
62
63
64
      .el-table {
        border-radius: 10px;
        height: 100%;
      }
    }
  }
  
  .router-link-active {
    text-decoration: none
  }
  
  a {
   text-decoration: none
  
0af91599   monkeyhouyi   弹框请求优化
65
  } 
7af40104   monkeyhouyi   应用信息页面完成(上报没写)