Blame view

src/views/home/index.scss 1.74 KB
任超 committed
1 2 3
.home {
  display: flex;
  justify-content: space-between;
任超 committed
4
  height: 100%;
5
  font-size: 14px;
任超 committed
6 7 8 9 10

  .flexst {
    display: flex;
    justify-content: space-between;
  }
11

任超 committed
12 13 14 15
  .title {
    display: flex;
    align-items: center;
  }
16

17 18 19 20 21 22
  .homeItem {
    /deep/.el-card__body {
      height: 83%;
    }
  }

任超 committed
23 24 25
  .workbench {
    flex-wrap: wrap;
    height: 100%;
26
    padding-left: 0;
27

任超 committed
28 29
    li {
      width: 32.5%;
30
      height: calc(50% - 5px);
任超 committed
31 32 33
      @include flex-center;
      flex-direction: column;
      color: #fff;
34
      font-size: 14px;
35
      margin-bottom: 0;
任超 committed
36 37 38 39 40 41 42 43 44 45 46 47

      i {
        color: #fff;
        font-size: 30px;
      }
    }

    li:nth-child(1) {
      margin-bottom: 6px;
    }
  }

任超 committed
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  .marginZL15 {
    margin: 0 15px;
  }

  .right15 {
    margin-right: 15px;
  }

  .title {
    font-size: 18px;
  }

  .marginTop10 {
    margin-top: 7px;
  }

  .home-left {
    width: 70%;
    padding-right: 3px;
67
    font-size: 14px;
68
    min-height: 625px;
任超 committed
69 70 71 72 73

    .list-title {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
任超 committed
74
      width: 75%;
任超 committed
75 76
    }

任超 committed
77

任超 committed
78 79 80
    ul {
      li {
        line-height: 36px;
任超 committed
81

任超 committed
82 83 84 85 86 87 88
        p {
          white-space: nowrap;
        }
      }
    }
  }

任超 committed
89 90
  .box-mountNode {
    flex: 1;
91 92
    // height: calc(100% - 490px);
    min-height: 130px;
任超 committed
93 94
  }

任超 committed
95 96 97
  .home-right {
    padding-left: 4px;
    width: 30%;
任超 committed
98 99
    display: flex;
    flex-direction: column;
100
    min-height: 620px;
任超 committed
101

蔡俊立 committed
102 103 104 105 106 107
    .list-title {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

任超 committed
108 109 110 111 112 113 114 115 116 117
    #loginTime {
      height: 100%;
      padding-bottom: 90px;
    }

    .dynamicInfo {
      flex: 1;
      height: 100%;
    }

蔡俊立 committed
118 119 120
    ul {
      li {
        line-height: 36px;
任超 committed
121

蔡俊立 committed
122 123 124 125 126
        p {
          white-space: nowrap;
        }
      }
    }
任超 committed
127 128
  }
}