Blame view

src/views/home/index.scss 1.58 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

任超 committed
17 18 19
  .workbench {
    flex-wrap: wrap;
    height: 100%;
20
    padding-left: 0;
21

任超 committed
22 23
    li {
      width: 32.5%;
任超 committed
24
      height: 90px;
任超 committed
25 26 27
      @include flex-center;
      flex-direction: column;
      color: #fff;
28
      font-size: 14px;
任超 committed
29 30 31 32 33 34 35 36 37 38 39 40

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

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

任超 committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  .marginZL15 {
    margin: 0 15px;
  }

  .right15 {
    margin-right: 15px;
  }

  .title {
    font-size: 18px;
  }

  .marginTop10 {
    margin-top: 7px;
  }

  .home-left {
    width: 70%;
    padding-right: 3px;
任超 committed
60
    height: 100%;
61
    font-size: 14px;
任超 committed
62 63 64 65 66

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

任超 committed
70

任超 committed
71 72 73
    ul {
      li {
        line-height: 36px;
任超 committed
74

任超 committed
75 76 77 78 79 80 81
        p {
          white-space: nowrap;
        }
      }
    }
  }

任超 committed
82 83
  .box-mountNode {
    flex: 1;
任超 committed
84
    height: calc(100% - 490px);
任超 committed
85 86
  }

任超 committed
87 88 89
  .home-right {
    padding-left: 4px;
    width: 30%;
任超 committed
90 91
    display: flex;
    flex-direction: column;
任超 committed
92

蔡俊立 committed
93 94 95 96 97 98
    .list-title {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

任超 committed
99 100 101 102 103 104 105 106 107 108
    #loginTime {
      height: 100%;
      padding-bottom: 90px;
    }

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

蔡俊立 committed
109 110 111
    ul {
      li {
        line-height: 36px;
任超 committed
112

蔡俊立 committed
113 114 115 116 117
        p {
          white-space: nowrap;
        }
      }
    }
任超 committed
118 119
  }
}