schemeDetail.less 1.67 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.editModal_container {
  width: 100%;
  overflow-y: hidden;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  button[ant-click-animating-without-extra-node]:after {
    border: 0 none;

    opacity: 0;

    animation: none 0 ease 0 1 normal;
  }
  .content {
    height: calc(100vh - 140px);
    overflow-y: scroll;
  }
  .cardList {
19
    display: flex;
20 21 22 23
    flex-wrap: wrap;
    .cardListItem {
      width: 50%;
      margin-bottom: 1rem;
24
    }
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
  }
  .ant-card-bordered {
    border-right: none;
  }
  .push_trench {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    .trench_card {
      margin-top: 1rem;
      margin-right: 0.5rem;
      min-width: 400px;
      border-width: 1px;
      border-color: #eeeeee;
      border-style: solid;
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #ffffff;
      .card_title {
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-bottom-color: #f6f7f9;
        height: 50px;
        width: 100%;
54
        display: flex;
55 56 57 58 59 60 61
        flex-direction: row;
        justify-content: space-between;
        padding: 0 24px;
        align-items: center;
        .lable {
          font-size: large;
          margin-left: 10px;
62
        }
63 64 65
      }
      .card_body {
        margin-top: 10px;
66
        width: 100%;
67 68
        padding: 10px;
        height: 12rem;
69
        display: flex;
70 71 72 73 74 75 76 77
        flex-direction: column;
      }
      .ant-switch {
        margin-right: 0.5rem;
      }
      .ant-form-item {
        margin-left: 1.3rem;
      }
78
    }
79 80
  }
}