Blame view

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

  .flexst {
    display: flex;
    justify-content: space-between;
  }
任超 committed
10 11 12 13
  .title {
    display: flex;
    align-items: center;
  }
任超 committed
14 15 16 17 18 19
  .workbench {
    flex-wrap: wrap;
    height: 100%;

    li {
      width: 32.5%;
任超 committed
20
      height: 90px;
任超 committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
      @include flex-center;
      flex-direction: column;
      color: #fff;

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

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

任超 committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
  .marginZL15 {
    margin: 0 15px;
  }

  .right15 {
    margin-right: 15px;
  }

  .title {
    font-size: 18px;
  }

  .marginTop10 {
    margin-top: 7px;
  }

  .home-left {
    width: 70%;
    padding-right: 3px;
任超 committed
55
    height: 100%;
任超 committed
56 57 58 59 60

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

任超 committed
64

任超 committed
65 66 67
    ul {
      li {
        line-height: 36px;
任超 committed
68

任超 committed
69 70 71 72 73 74 75
        p {
          white-space: nowrap;
        }
      }
    }
  }

任超 committed
76 77
  .box-mountNode {
    flex: 1;
任超 committed
78
    height: calc(100% - 490px);
任超 committed
79 80
  }

任超 committed
81 82 83
  .home-right {
    padding-left: 4px;
    width: 30%;
任超 committed
84 85
    display: flex;
    flex-direction: column;
任超 committed
86

蔡俊立 committed
87 88 89 90 91 92
    .list-title {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

任超 committed
93 94 95 96 97 98 99 100 101 102
    #loginTime {
      height: 100%;
      padding-bottom: 90px;
    }

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

蔡俊立 committed
103 104 105
    ul {
      li {
        line-height: 36px;
任超 committed
106

蔡俊立 committed
107 108 109 110 111
        p {
          white-space: nowrap;
        }
      }
    }
任超 committed
112 113
  }
}